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