1 | <?php |
||
11 | class Parameter extends Variable |
||
12 | { |
||
13 | /** |
||
14 | * @param string $name |
||
15 | * @param null $defaultValue |
||
16 | * @param int $type |
||
17 | * @param bool|false $referenced |
||
18 | */ |
||
19 | public function __construct($name, $defaultValue = null, $type = CompiledExpression::UNKNOWN, $referenced = false) |
||
25 | |||
26 | /** |
||
27 | * @return string |
||
28 | */ |
||
29 | public function getSymbolType() |
||
33 | } |
||
34 |