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