Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | final class SuggestCommand extends Command |
||
8 | { |
||
9 | private $command = 'SUGGEST'; |
||
10 | private $parameters = []; |
||
11 | |||
12 | /** |
||
13 | * SuggestCommand 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 | } |