Total Complexity | 1 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | final class StopSubcommand extends Subcommand |
||
9 | { |
||
10 | /** |
||
11 | * The process' command string. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | const COMMAND = 'docker-compose stop'; |
||
16 | |||
17 | /** |
||
18 | * Invoke the subcommand. |
||
19 | * |
||
20 | * @param InputInterface $input |
||
21 | * @param OutputInterface $output |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __invoke(InputInterface $input, OutputInterface $output): void |
||
34 |