| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | RethinkInterface $rethink, |
||
| 34 | QueryInterface $query, |
||
| 35 | $min, |
||
| 36 | $max, |
||
| 37 | $options = null |
||
| 38 | ) { |
||
| 39 | parent::__construct($rethink); |
||
| 40 | |||
| 41 | $this->rethink = $rethink; |
||
| 42 | $this->query = $query; |
||
| 43 | $this->min = $min; |
||
| 44 | $this->max = $max; |
||
| 45 | $this->options = $options; |
||
| 46 | } |
||
| 66 |