| Total Complexity | 2 | 
| Total Lines | 23 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 20 | * | ||
| 21 | * @param JsonReadable $reader | ||
| 22 | * @return void|null | ||
| 23 | */ | ||
| 24 | public function read(JsonReadable $reader): void | ||
| 25 |     { | ||
| 26 | $reader->nextNull(); | ||
| 27 | } | ||
| 28 | |||
| 29 | /** | ||
| 30 | * Write the value to the writer for the type | ||
| 31 | * | ||
| 32 | * @param JsonWritable $writer | ||
| 33 | * @param mixed $value | ||
| 34 | * @return void | ||
| 35 | */ | ||
| 36 | public function write(JsonWritable $writer, $value): void | ||
| 39 | } | ||
| 40 | } | ||
| 41 |