| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 28 | protected function compile($expr, Context $context) |
||
| 29 | { |
||
| 30 | $expression = new Expression($context); |
||
| 31 | $expression->compile($expr->expr); |
||
| 32 | |||
| 33 | $expression = new Expression($context); |
||
| 34 | $expression->compile($expr->class); |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Anyway this operator will return BOOLEAN |
||
| 38 | */ |
||
| 39 | return new CompiledExpression(CompiledExpression::BOOLEAN); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |