Total Complexity | 3 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | abstract class AbstractCommand implements Command |
||
16 | { |
||
17 | |||
18 | /** |
||
19 | * @inheritDoc |
||
20 | */ |
||
21 | 17 | public function getFilters(): array |
|
22 | { |
||
23 | 17 | return []; |
|
24 | } |
||
25 | |||
26 | /** |
||
27 | * @inheritDoc |
||
28 | */ |
||
29 | 22 | public function getParameters(): array |
|
30 | { |
||
31 | 22 | return []; |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | 5 | public function getResponseParser() |
|
43 | } |
||
44 | } |
||
45 |