Conditions | 2 |
Paths | 2 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
7 | public function cast($value, FieldValidator $validator) |
||
8 | { |
||
9 | return $this->shouldBeCastToCollection($value) |
||
10 | ? $this->castCollection($value, $validator->allowedArrayTypes, $this->collectionType($validator->allowedTypes)) |
||
11 | : $this->castValue($value, $validator->allowedTypes); |
||
12 | } |
||
13 | |||
92 |