| 1 | <?php |
||
| 15 | class NullValue extends AbstractValue |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * NullValue constructor. |
||
| 19 | * @param int $offset |
||
| 20 | */ |
||
| 21 | public function __construct(int $offset = 0) |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function toString(): string |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return void |
||
| 36 | */ |
||
| 37 | public function getValue(): void |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return string |
||
| 44 | */ |
||
| 45 | public function __toString(): string |
||
| 49 | } |
||
| 50 |