Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class CarbonConverter implements ValueConverter |
||
13 | { |
||
14 | /** |
||
15 | * Convert the given value to be exported from a DTO. |
||
16 | * |
||
17 | * @param mixed $value |
||
18 | * @return mixed |
||
19 | */ |
||
20 | 1 | public function fromDto($value) |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * Convert the given value to be imported into a DTO. |
||
27 | * |
||
28 | * @param mixed $value |
||
29 | * @return mixed |
||
30 | */ |
||
31 | 4 | public function toDto($value) |
|
36 |