Completed
Push — master ( e65d6e...357eb6 )
by dima
03:55
created
app/Console/Commands/InstallCommand.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -25,21 +25,21 @@
 block discarded – undo
25 25
     protected function execute(InputInterface $input, OutputInterface $output)
26 26
     { 
27 27
 		
28
-		$command	 = $this->getApplication()->find('config:convert');
29
-		$returnCode	 = $command->run(new ArrayInput([
30
-				'command'	 => 'config:convert'
31
-		]), $output);
28
+        $command	 = $this->getApplication()->find('config:convert');
29
+        $returnCode	 = $command->run(new ArrayInput([
30
+                'command'	 => 'config:convert'
31
+        ]), $output);
32 32
 		
33
-		$command	 = $this->getApplication()->find('packages:install');
34
-		$returnCode	 = $command->run(new ArrayInput([
35
-				'command'	 => 'packages:install'
36
-		]), $output);
33
+        $command	 = $this->getApplication()->find('packages:install');
34
+        $returnCode	 = $command->run(new ArrayInput([
35
+                'command'	 => 'packages:install'
36
+        ]), $output);
37 37
 
38
-		$command	 = $this->getApplication()->find('migration:migrate');
39
-		$returnCode	 = $command->run(new ArrayInput([
40
-				'command'	 => 'migration:migrate'
41
-		]), $output);		
38
+        $command	 = $this->getApplication()->find('migration:migrate');
39
+        $returnCode	 = $command->run(new ArrayInput([
40
+                'command'	 => 'migration:migrate'
41
+        ]), $output);		
42 42
 
43
-		$output->writeln("install completed!");
43
+        $output->writeln("install completed!");
44 44
     }
45 45
 }
Please login to merge, or discard this patch.