Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
15 | class DockerComposeStopCommand extends AbstractCommand |
||
16 | { |
||
17 | protected function configure(): void |
||
18 | { |
||
19 | $this |
||
20 | ->setName('docker:compose:stop') |
||
21 | ->setDescription('Docker composer stop') |
||
22 | ->addArgument('files', InputArgument::IS_ARRAY, 'Compose file', ['docker-compose.yaml']); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
27 | * @param \Symfony\Component\Console\Output\OutputInterface $output |
||
28 | * |
||
29 | * @return int|null|void |
||
30 | */ |
||
31 | protected function execute(InputInterface $input, OutputInterface $output) |
||
41 | } |
||
42 | } |
||
45 | } |