| 1 | <?php |
||
| 11 | class GlobalVariable extends Variable |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param string $name |
||
| 15 | * @param mixed $defaultValue |
||
| 16 | * @param int $type |
||
| 17 | */ |
||
| 18 | 885 | public function __construct($name, $defaultValue = null, $type = CompiledExpression::UNKNOWN) |
|
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | public function getSymbolType() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | 48 | public function isGlobal() |
|
| 38 | } |
||
| 39 |