Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class NotLogic extends AbstractQuery |
||
13 | { |
||
14 | use OperationTrait; |
||
15 | |||
16 | /** |
||
17 | * @var QueryInterface |
||
18 | */ |
||
19 | private $query; |
||
20 | |||
21 | public function __construct( |
||
22 | RethinkInterface $rethink, |
||
23 | QueryInterface $query |
||
24 | ) { |
||
25 | parent::__construct($rethink); |
||
26 | |||
27 | $this->rethink = $rethink; |
||
28 | $this->query = $query; |
||
29 | } |
||
30 | |||
31 | public function toArray(): array |
||
38 | ], |
||
39 | ]; |
||
42 |