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