Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
24 | public function is_correct( $a, $comparison_operator, $b ) { |
||
25 | if ( ! is_callable( $b ) ) { |
||
26 | Incorrect_Syntax_Exception::raise( 'Supplied comparison value is not a callable: ' . print_r( $b, true ) ); |
||
27 | return false; |
||
28 | } |
||
29 | |||
30 | switch ( $comparison_operator ) { |
||
31 | case 'CUSTOM': |
||
32 | return (bool) $b( $a ); |
||
33 | } |
||
34 | return false; |
||
35 | } |
||
36 | } |