| 1 | <?php |
||
| 17 | class ValueNode extends Rule implements ValueInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @return ValueInterface |
||
| 21 | */ |
||
| 22 | public function getInnerValue(): ValueInterface |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function toString(): string |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @return mixed |
||
| 37 | */ |
||
| 38 | public function toPrimitive() |
||
| 42 | } |
||
| 43 |