Completed
Push — master ( dd8846...82fafa )
by Amine
03:04
created
examples/RepeatCommand.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,9 @@
 block discarded – undo
19 19
     protected function execute()
20 20
     {
21 21
         $result = str_repeat($this->args->word, $this->args->count);
22
-        if ($this->option('--upper'))
23
-            $result = strtoupper($result);
22
+        if ($this->option('--upper')) {
23
+                    $result = strtoupper($result);
24
+        }
24 25
         $this->console->line($result);
25 26
     }
26 27
 
Please login to merge, or discard this patch.