Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 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 | */ |
||
19 | public function __construct(string $collection, string $bucket, string $terms, $limit = null) |
||
29 | } |
||
30 | } |