| Total Complexity | 3 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class Filter extends AbstractTransformationCompound |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | private $predicate; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var QueryInterface |
||
| 21 | */ |
||
| 22 | private $query; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param RethinkInterface $rethink |
||
| 26 | * @param MessageInterface $message |
||
| 27 | * @param QueryInterface $query |
||
| 28 | 5 | * @param array $predicate |
|
| 29 | */ |
||
| 30 | public function __construct( |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | 5 | * @inheritdoc |
|
| 46 | */ |
||
| 47 | 5 | public function toArray(): array |
|
| 66 |