Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
39 | public function __construct( |
||
40 | RethinkInterface $rethink, |
||
41 | QueryInterface $query, |
||
42 | $min, |
||
43 | $max, |
||
44 | array $options = null |
||
45 | ) { |
||
46 | parent::__construct($rethink); |
||
47 | |||
48 | $this->rethink = $rethink; |
||
49 | $this->query = $query; |
||
50 | $this->min = $min; |
||
51 | $this->max = $max; |
||
52 | $this->options = $options; |
||
53 | } |
||
73 |