Conditions | 3 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | 1 | public function convertToPHPValue($value, AbstractPlatform $platform): array |
|
29 | { |
||
30 | 1 | if ($value === null || $value === '') { |
|
31 | 1 | return []; |
|
32 | } |
||
33 | |||
34 | 1 | $val = parent::convertToPHPValue($value, $platform); |
|
35 | |||
36 | 1 | return $val; |
|
1 ignored issue
–
show
|
|||
37 | } |
||
52 |