@@ -136,7 +136,7 @@ discard block |
||
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 |
||
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 |
||
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 |