| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function __construct( |
||
| 21 | Context $context, |
||
| 22 | OperatorsDefinitions $operators, |
||
| 23 | $allowStarOperator = true, |
||
| 24 | $allowEloquentBuilderAsQuery = false |
||
| 25 | ) { |
||
| 26 | parent::__construct($context, $operators, $allowStarOperator); |
||
| 27 | |||
| 28 | $this->allowEloquentBuilderAsQuery = (bool) $allowEloquentBuilderAsQuery; |
||
| 29 | } |
||
| 30 | |||
| 41 |