@@ -19,8 +19,9 @@ |
||
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 |