1 | <?php |
||
9 | class Pause extends BaseCommand implements CommandInterface |
||
10 | { |
||
11 | /** |
||
12 | * @inheritdoc |
||
13 | */ |
||
14 | protected $responseHandler = StringResponse::class; |
||
15 | |||
16 | /** |
||
17 | * @inheritdoc |
||
18 | */ |
||
19 | public function getCommand() |
||
23 | |||
24 | /** |
||
25 | * Set arguments for the command |
||
26 | * |
||
27 | * @param array $arguments Arguments |
||
28 | * @return void |
||
29 | * @throws InvalidCommandArgumentException |
||
30 | */ |
||
31 | public function setArguments(array $arguments) |
||
37 | } |