Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class ArrayDeserializer implements Deserializer |
||
13 | { |
||
14 | /** |
||
15 | * Makes a new deserializer for arrays. |
||
16 | * |
||
17 | * @return Deserializer The array deserializer. |
||
18 | */ |
||
19 | public static function make(): Deserializer |
||
22 | } |
||
23 | |||
24 | /** @inheritdoc */ |
||
25 | public function from(array $input): array |
||
28 | } |
||
29 | |||
30 | /** @inheritdoc */ |
||
31 | public function typeFor(array $input): string |
||
36 |