| 1 | <?php |
||
| 11 | class GlobalVariable extends Variable |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param string $name |
||
| 15 | * @param mixed $defaultValue |
||
| 16 | * @param int $type |
||
| 17 | */ |
||
| 18 | public function __construct($name, $defaultValue = null, $type = CompiledExpression::UNKNOWN) |
||
| 19 | { |
||
| 20 | parent::__construct($name, $defaultValue, $type); |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getSymbolType() |
||
| 30 | } |
||
| 31 |