Conditions | 5 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function __construct(?Value $key, ValuableNode $value) |
||
24 | { |
||
25 | assert( |
||
26 | $key === null |
||
27 | || $key instanceof StringScalar |
||
28 | || $key instanceof IntegerScalar |
||
29 | || $key instanceof ConstantFetch |
||
30 | || $key instanceof ClassConstantFetch |
||
31 | ); |
||
32 | |||
33 | $this->key = $key; |
||
34 | $this->value = $value; |
||
35 | } |
||
58 |