| Total Complexity | 6 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class ListWorkflowsCommand extends AbstractCommand implements ResponseParser |
||
| 20 | { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritDoc |
||
| 24 | */ |
||
| 25 | 10 | public function getGroup(): string |
|
| 26 | { |
||
| 27 | 10 | return 'workflows'; |
|
| 28 | } |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @inheritDoc |
||
| 32 | */ |
||
| 33 | 10 | public function getAction(): string |
|
| 34 | { |
||
| 35 | 10 | return 'list'; |
|
| 36 | } |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @inheritDoc |
||
| 40 | */ |
||
| 41 | 3 | public function getResponseParser() |
|
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @inheritDoc |
||
| 48 | */ |
||
| 49 | 10 | public function parseResponse($responseLine, $responseData) |
|
| 68 |