Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class StatsCommand extends AbstractCommand |
||
18 | { |
||
19 | /** |
||
20 | * @inheritDoc |
||
21 | */ |
||
22 | 4 | public function getGroup(): string |
|
25 | } |
||
26 | |||
27 | /** |
||
28 | * @inheritDoc |
||
29 | */ |
||
30 | 4 | public function getAction(): string |
|
31 | { |
||
32 | 4 | return 'query'; |
|
33 | } |
||
34 | |||
35 | /** |
||
36 | * @inheritDoc |
||
37 | */ |
||
38 | 4 | public function getFilters(): array |
|
42 | ]; |
||
43 | } |
||
45 |