@@ -30,11 +30,6 @@ class ConfigureCommand extends Command
3030 private const string OPTION_MODIFICATIONS = 'modifications ' ;
3131 private const string ARGUMENT_PATH = 'path ' ;
3232
33- /**
34- * @param \Shopsys\Cli\Worker\WorkerRunner $workerRunner
35- * @param \Shopsys\Cli\Input\InteractiveInputCollector $interactiveInputCollector
36- * @param \Shopsys\Cli\Input\YamlConfigLoader $yamlConfigLoader
37- */
3833 public function __construct (
3934 private readonly WorkerRunner $ workerRunner ,
4035 private readonly InteractiveInputCollector $ interactiveInputCollector ,
@@ -83,11 +78,6 @@ protected function configure(): void
8378 );
8479 }
8580
86- /**
87- * @param \Symfony\Component\Console\Input\InputInterface $input
88- * @param \Symfony\Component\Console\Output\OutputInterface $output
89- * @return int
90- */
9181 #[Override]
9282 protected function execute (InputInterface $ input , OutputInterface $ output ): int
9383 {
@@ -128,7 +118,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
128118 $ results = $ this ->workerRunner ->run (
129119 $ config ,
130120 $ projectPath ,
131- function (WorkerInterface $ worker , WorkerResult $ result ) use ($ io , $ input ) {
121+ function (WorkerInterface $ worker , WorkerResult $ result ) use ($ io , $ input ): void {
132122 if ($ result ->success ) {
133123 $ io ->section (sprintf ('<fg=green>✓</> %s ' , $ result ->message ));
134124
@@ -170,7 +160,6 @@ function (WorkerInterface $worker, WorkerResult $result) use ($io, $input) {
170160 }
171161
172162 /**
173- * @param \Symfony\Component\Console\Style\SymfonyStyle $io
174163 * @param array<\Shopsys\Cli\Worker\WorkerResult> $results
175164 */
176165 private function displayHints (SymfonyStyle $ io , array $ results ): void
@@ -185,9 +174,6 @@ private function displayHints(SymfonyStyle $io, array $results): void
185174 $ io ->listing ($ hints );
186175 }
187176
188- /**
189- * @param \Symfony\Component\Console\Style\SymfonyStyle $io
190- */
191177 private function displayNextSteps (SymfonyStyle $ io ): void
192178 {
193179 $ io ->writeln ('<info>Next steps:</info> ' );
0 commit comments