Conditions | 3 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 8 |
Ratio | 100 % |
Tests | 4 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
73 | 6 | View Code Duplication | protected function checkMatches($lhs, $rhs) |
74 | { |
||
75 | 6 | if ($lhs === self::NONE || $rhs === self::NONE) { |
|
76 | 1 | return false; |
|
77 | } |
||
78 | |||
79 | 6 | return (string) $lhs === (string) $rhs; |
|
80 | } |
||
81 | |||
90 |