| Total Complexity | 3 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class Filter extends AbstractQuery |
||
| 15 | { |
||
| 16 | use TransformationTrait; |
||
| 17 | use OperationTrait; |
||
| 18 | use AggregationTrait; |
||
| 19 | use ManipulationTrait; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var array |
||
| 23 | */ |
||
| 24 | private $predicate; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var QueryInterface |
||
| 28 | 5 | */ |
|
| 29 | private $query; |
||
| 30 | |||
| 31 | public function __construct( |
||
| 41 | } |
||
| 42 | |||
| 43 | public function toArray(): array |
||
| 62 |