| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | public function __construct( |
||
| 26 | VariableNode $variable, |
||
| 27 | TypeNodeInterface $type, |
||
| 28 | ?ValueNodeInterface $defaultValue, |
||
| 29 | ?Location $location |
||
| 30 | ) { |
||
| 31 | parent::__construct(NodeKindEnum::VARIABLE_DEFINITION, $location); |
||
| 32 | |||
| 33 | $this->variable = $variable; |
||
| 34 | $this->type = $type; |
||
| 35 | $this->defaultValue = $defaultValue; |
||
| 36 | } |
||
| 75 |