@@ -40,7 +40,7 @@ |
||
| 40 | 40 | * @throws ContainerExceptionInterface |
| 41 | 41 | * @throws NotFoundExceptionInterface |
| 42 | 42 | */ |
| 43 | - private function createRealRunner(): DryRunner|PassthruRunner |
|
| 43 | + private function createRealRunner(): DryRunner | PassthruRunner |
|
| 44 | 44 | { |
| 45 | 45 | if ($this->container->get(InputInterface::class)->getOption('dry-run')) { |
| 46 | 46 | return new DryRunner($this->container->get(OutputInterface::class)); |
@@ -30,8 +30,8 @@ |
||
| 30 | 30 | protected function configure(): void |
| 31 | 31 | { |
| 32 | 32 | $this->setDescription('Lists available tools'); |
| 33 | - $this->addOption('exclude-tag', 'e', InputOption::VALUE_REQUIRED|InputOption::VALUE_IS_ARRAY, 'Tool tags to exclude', $this->defaultExcludeTag()); |
|
| 34 | - $this->addOption('tag', 't', InputOption::VALUE_REQUIRED|InputOption::VALUE_IS_ARRAY, 'Tool tags to filter by', $this->defaultTag()); |
|
| 33 | + $this->addOption('exclude-tag', 'e', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Tool tags to exclude', $this->defaultExcludeTag()); |
|
| 34 | + $this->addOption('tag', 't', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY, 'Tool tags to filter by', $this->defaultTag()); |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | protected function execute(InputInterface $input, OutputInterface $output): int |