Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
18 | 12 | public function isSatisfiedBy(ProcessorInterface $processor, ExprInterface $exprClass): bool |
|
19 | { |
||
20 | /** @var EloquentProcessor $processor */ |
||
21 | 12 | if (! in_array($exprClass->getExpression(), $processor::getComparisonMethods(), false)) { |
|
22 | 5 | return false; |
|
23 | } |
||
24 | |||
25 | 7 | return true; |
|
26 | } |
||
43 |