Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class StatsTubeCommand extends AbstractCommand |
||
18 | { |
||
19 | private $_tube; |
||
20 | |||
21 | /** |
||
22 | * @param string $tube |
||
23 | */ |
||
24 | public function __construct($tube) |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @inheritDoc |
||
31 | */ |
||
32 | public function getGroup(): string |
||
35 | } |
||
36 | |||
37 | /** |
||
38 | * @inheritDoc |
||
39 | */ |
||
40 | public function getAction(): string |
||
41 | { |
||
42 | return 'get'; |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @inheritDoc |
||
47 | */ |
||
48 | public function getFilters(): array |
||
52 | ]; |
||
53 | } |
||
55 |