Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
25 | class NullToEmptyTransformer implements DataTransformerInterface |
||
26 | { |
||
27 | /** |
||
28 | * Does not transform anything. |
||
29 | * |
||
30 | * @param string|null $value |
||
31 | * @return string |
||
32 | */ |
||
33 | public function transform(mixed $value): mixed |
||
34 | { |
||
35 | return $value; |
||
36 | } |
||
37 | |||
38 | /** |
||
39 | * Transforms a null value to an empty string. |
||
40 | * |
||
41 | * @param string $value |
||
42 | * @return string |
||
43 | */ |
||
44 | public function reverseTransform(mixed $value): mixed |
||
47 | } |
||
48 | } |
||
49 |