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