Completed
Push — master ( dd8846...82fafa )
by Amine
03:04
created
examples/RepeatCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
examples/RenderCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.
examples/ListCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
examples/HelloWorld.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
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')
Please login to merge, or discard this patch.