@@ -313,7 +313,7 @@ |
||
313 | 313 | } |
314 | 314 | |
315 | 315 | /** |
316 | - * @param array $execs |
|
316 | + * @param string[] $execs |
|
317 | 317 | * @param string $fileName |
318 | 318 | * @param InputInterface $input |
319 | 319 | * @param OutputInterface $output |
@@ -181,7 +181,7 @@ |
||
181 | 181 | if (is_null($input->getArgument('children-categories-number'))) { |
182 | 182 | $question = new Question("Number of children for each category created (default: 0 - use '-1' for random from 0 to 5): ", 0); |
183 | 183 | $question->setValidator(function ($answer) { |
184 | - $answer = (int)($answer); |
|
184 | + $answer = (int) ($answer); |
|
185 | 185 | if (!is_int($answer) || $answer < -1) { |
186 | 186 | throw new RuntimeException("Please enter an integer value or >= -1"); |
187 | 187 | } |