Total Complexity | 2 |
Total Lines | 33 |
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 | |||
30 | $this->query = $query; |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * @inheritdoc |
||
35 | */ |
||
36 | public function toArray(): array |
||
43 | ], |
||
44 | ]; |
||
47 |