Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | public function __construct(string $collection, string $bucket, string $terms, $limit = null) |
||
20 | { |
||
21 | $this->parameters = [ |
||
22 | 'collection' => $collection, |
||
23 | 'bucket' => $bucket, |
||
24 | 'terms' => quote($terms), |
||
25 | 'limit' => $limit, |
||
26 | ]; |
||
27 | |||
28 | parent::__construct($this->command, $this->parameters); |
||
29 | } |
||
30 | } |