Completed
Push — develop ( 1e305e...263a57 )
by Tom
04:27
created
src/N98/Magento/Command/Database/DumpCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/N98/Magento/Command/Category/Create/DummyCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
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
                 }
Please login to merge, or discard this patch.