Completed
Push — develop ( 1e305e...263a57 )
by Tom
04:27
created
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.