Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | class ArrayableToArrayConverter implements ConverterInterface |
||
19 | { |
||
20 | 1 | public function convert($value): array |
|
23 | } |
||
24 | |||
25 | 1 | public function supports($value): bool |
|
28 | } |
||
29 | |||
30 | 1 | public function getType(): string |
|
31 | { |
||
32 | 1 | return 'array'; |
|
33 | } |
||
34 | |||
35 | 1 | public function getPriority(): int |
|
38 | } |
||
39 | } |
||
40 |