Completed
Push — master ( 60b6a2...7ecfd2 )
by Sergi Tur
03:28
created
src/Console/LlumCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      */
137 137
     protected function installConfigAppFile()
138 138
     {
139
-        if (! $this->checkIfLaravelConfigFileExists()) {
139
+        if (!$this->checkIfLaravelConfigFileExists()) {
140 140
             $this->output->writeln('<error>File '.$this->laravel_config_file.' doesn\'t exists');
141 141
 
142 142
             return -1;
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
 
246 246
         $process = new Process($composer.' require '.$package.'', null, null, null, null);
247 247
         $this->output->writeln('<info>Running composer require '.$package.'</info>');
248
-        $process->run(function ($type, $line) {
248
+        $process->run(function($type, $line) {
249 249
             $this->output->write($line);
250 250
         });
251 251
     }
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
         $name = $command->name();
444 444
         $description = $command->description();
445 445
 
446
-        if (!is_string($name) || !is_string($description) ) {
446
+        if (!is_string($name) || !is_string($description)) {
447 447
             throw new InvalidCommandException;
448 448
         }
449 449
         
Please login to merge, or discard this patch.