@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | class RepeatCommand extends Command { |
| 6 | 6 | |
| 7 | - protected function init () |
|
| 7 | + protected function init() |
|
| 8 | 8 | { |
| 9 | 9 | $this->name('Repeat') |
| 10 | 10 | ->version('1.0.0') |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | class RenderCommand extends Command { |
| 6 | 6 | |
| 7 | - protected function init () |
|
| 7 | + protected function init() |
|
| 8 | 8 | { |
| 9 | 9 | $this->name('Render') |
| 10 | 10 | ->version('1.0.0') |
@@ -4,7 +4,7 @@ discard block |
||
| 4 | 4 | |
| 5 | 5 | class ListCommand extends Command { |
| 6 | 6 | |
| 7 | - protected function init () |
|
| 7 | + protected function init() |
|
| 8 | 8 | { |
| 9 | 9 | $this->name('List') |
| 10 | 10 | ->version('1.0.0-alpha') |
@@ -13,7 +13,7 @@ discard block |
||
| 13 | 13 | |
| 14 | 14 | protected function execute() |
| 15 | 15 | { |
| 16 | - foreach($this->fs->find('*')->asArray() as $file) { |
|
| 16 | + foreach ($this->fs->find('*')->asArray() as $file) { |
|
| 17 | 17 | $this->console->line($file->name()); |
| 18 | 18 | } |
| 19 | 19 | } |
@@ -4,7 +4,7 @@ |
||
| 4 | 4 | |
| 5 | 5 | class HelloWorld extends Command { |
| 6 | 6 | |
| 7 | - protected function init () |
|
| 7 | + protected function init() |
|
| 8 | 8 | { |
| 9 | 9 | $this->name('Hello World') |
| 10 | 10 | ->version('1.0.0-alpha') |