Total Complexity | 3 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
5 | class TypeArrayOfType implements CastInterface |
||
6 | { |
||
7 | /** |
||
8 | * @var CastInterface |
||
9 | */ |
||
10 | protected $type; |
||
11 | |||
12 | /** |
||
13 | * @param CastInterface $type |
||
14 | */ |
||
15 | public function __construct(CastInterface $type) |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @param $value |
||
22 | * |
||
23 | * @return array |
||
24 | */ |
||
25 | public function cast($value): array |
||
34 |