| Total Complexity | 4 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | * @param JsonReadable $reader |
||
| 22 | * @return string|null |
||
| 23 | */ |
||
| 24 | public function read(JsonReadable $reader): ?string |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Write the value to the writer for the type |
||
| 36 | * |
||
| 37 | * @param JsonWritable $writer |
||
| 38 | * @param string|null $value |
||
| 39 | * @return void |
||
| 40 | */ |
||
| 41 | public function write(JsonWritable $writer, $value): void |
||
| 50 | } |
||
| 51 | } |
||
| 52 |