Total Complexity | 5 |
Total Lines | 45 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | class ListWorkflowsCommand extends AbstractCommand implements \Pheanstalk\ResponseParser |
||
22 | { |
||
23 | |||
24 | /** |
||
25 | * @inheritDoc |
||
26 | */ |
||
27 | 5 | public function getGroup(): string |
|
30 | } |
||
31 | |||
32 | /** |
||
33 | * @inheritDoc |
||
34 | */ |
||
35 | 5 | public function getAction(): string |
|
36 | { |
||
37 | 5 | return 'list'; |
|
38 | } |
||
39 | |||
40 | /** |
||
41 | * @inheritDoc |
||
42 | */ |
||
43 | 1 | public function getResponseParser() |
|
44 | { |
||
45 | 1 | return $this; |
|
46 | } |
||
47 | |||
48 | /** |
||
49 | * @inheritDoc |
||
50 | */ |
||
51 | 5 | public function parseResponse($responseLine, $responseData) |
|
66 | } |
||
67 | } |
||
68 |