Total Complexity | 6 |
Total Lines | 44 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | class ListSchedulesCommand extends GetScheduleCommand implements ResponseParser |
||
20 | { |
||
21 | |||
22 | public function __construct() |
||
23 | { |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @inheritDoc |
||
28 | */ |
||
29 | 1 | public function getGroup(): string |
|
30 | { |
||
31 | 1 | return 'workflow_schedules'; |
|
32 | } |
||
33 | |||
34 | /** |
||
35 | * @inheritDoc |
||
36 | */ |
||
37 | 1 | public function getAction(): string |
|
38 | { |
||
39 | 1 | return 'list'; |
|
40 | } |
||
41 | |||
42 | /** |
||
43 | * @inheritDoc |
||
44 | */ |
||
45 | 1 | public function getResponseParser() |
|
46 | { |
||
47 | 1 | return $this; |
|
48 | } |
||
49 | |||
50 | /** |
||
51 | * @inheritDoc |
||
52 | */ |
||
53 | 1 | public function parseResponse($responseLine, $responseData) |
|
63 | } |
||
64 | } |
||
65 |