Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class NotLogic extends AbstractOperation |
||
11 | { |
||
12 | /** |
||
13 | * @var QueryInterface |
||
14 | */ |
||
15 | private $query; |
||
16 | |||
17 | /** |
||
18 | * @param RethinkInterface $rethink |
||
19 | * @param QueryInterface $query |
||
20 | * @param mixed $value |
||
21 | */ |
||
22 | public function __construct( |
||
23 | RethinkInterface $rethink, |
||
24 | QueryInterface $query |
||
25 | ) { |
||
26 | parent::__construct($rethink); |
||
27 | |||
28 | $this->rethink = $rethink; |
||
29 | $this->query = $query; |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @inheritdoc |
||
34 | */ |
||
35 | public function toArray(): array |
||
42 | ], |
||
43 | ]; |
||
46 |