mirror of
https://github.com/standardebooks/web.git
synced 2025-07-06 14:50:39 -04:00
8 lines
100 B
PHP
8 lines
100 B
PHP
<?
|
|
enum HttpVariableType{
|
|
case Array;
|
|
case Boolean;
|
|
case Decimal;
|
|
case Integer;
|
|
case String;
|
|
}
|