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