Conditions | 6 |
Paths | 5 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 42 |
Changes | 0 |
1 | <?php |
||
55 | protected function isOptionSelected($value, $selectedValue): bool |
||
56 | { |
||
57 | if (is_null($selectedValue)) { |
||
58 | return false; |
||
59 | } |
||
60 | if ($selectedValue === 0 or $value === 0) { |
||
61 | if ($value === $selectedValue) { |
||
62 | return true; |
||
63 | } |
||
64 | } elseif ($selectedValue == $value) { |
||
65 | return true; |
||
66 | } |
||
67 | return false; |
||
68 | } |
||
70 |