Completed
Push — master ( 2f10fa...cbe94a )
by Amine
01:27
created
src/Command.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -44,14 +44,14 @@  discard block
 block discarded – undo
44 44
     {
45 45
         $this->commands = [];
46 46
         $this->setupSubCommands()
47
-             ->name('Unknown')
48
-             ->version('1.0.0')
49
-             ->description('...')
50
-             ->descriptions([])
51
-             ->options([])
52
-             ->console(new Console)
53
-             ->fs(new Filesystem('.'))
54
-             ->init();
47
+                ->name('Unknown')
48
+                ->version('1.0.0')
49
+                ->description('...')
50
+                ->descriptions([])
51
+                ->options([])
52
+                ->console(new Console)
53
+                ->fs(new Filesystem('.'))
54
+                ->init();
55 55
     }
56 56
 
57 57
     /**
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
     protected function setupSubCommands()
270 270
     {
271 271
         return $this->command('--help', new HelpCommand($this))
272
-             ->command('--version', new VersionCommand($this));
272
+                ->command('--version', new VersionCommand($this));
273 273
     }
274 274
 
275 275
     public function describe(string $name, string $description = null)
Please login to merge, or discard this patch.
src/SubCommand.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
     {
24 24
         parent::__construct();
25 25
         $this->parent($parent)
26
-             ->console($parent->console);
26
+                ->console($parent->console);
27 27
     }
28 28
 
29 29
     protected function setupSubCommands()
Please login to merge, or discard this patch.