Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class QueryCommand extends Command |
||
8 | { |
||
9 | private $command = 'QUERY'; |
||
10 | private $parameters = []; |
||
11 | |||
12 | /** |
||
13 | * QueryCommand constructor. |
||
14 | * @param string $collection |
||
15 | * @param string $bucket |
||
16 | * @param string $terms |
||
17 | * @param null $limit |
||
|
|||
18 | * @param null $offset |
||
19 | * @param null $locale |
||
20 | */ |
||
21 | public function __construct(string $collection, string $bucket, string $terms, $limit = null, $offset = null, $locale = null) |
||
35 |