Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
28 | 8 | public function __construct( |
|
29 | RethinkInterface $rethink, |
||
30 | MessageInterface $message, |
||
31 | QueryInterface $query, |
||
32 | array $documents |
||
33 | ) { |
||
34 | 8 | parent::__construct($rethink, $message); |
|
35 | |||
36 | 8 | $this->query = $query; |
|
37 | 8 | $this->predicate = $documents; |
|
38 | 8 | $this->rethink = $rethink; |
|
39 | 8 | $this->message = $message; |
|
40 | 8 | } |
|
41 | |||
64 |