| 1 | <?php |
||
| 7 | final class Nil implements ValueObjectInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param null $nativeValue |
||
| 11 | * @return self |
||
| 12 | */ |
||
| 13 | 30 | public static function fromNative($nativeValue): self |
|
| 18 | |||
| 19 | /** |
||
| 20 | * @return null |
||
| 21 | */ |
||
| 22 | 2 | public function toNative() |
|
| 26 | |||
| 27 | 2 | public function equals(ValueObjectInterface $otherValue): bool |
|
| 31 | |||
| 32 | 1 | public function __toString(): string |
|
| 36 | } |
||
| 37 |