Completed
Push — master ( c84e1c...f32b00 )
by Sergi Tur
03:36
created
src/Console/LlumCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
         $process = new Process($composer.' require '.$package.'', null, null, null, null);
112 112
         $this->output->writeln('<info>Running composer require '.$package.'</info>');
113
-        $process->run(function ($type, $line) {
113
+        $process->run(function($type, $line) {
114 114
             $this->output->write($line);
115 115
         });
116 116
     }
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
         $name = $command->name();
253 253
         $description = $command->description();
254 254
 
255
-        if (! is_string($name) || ! is_string($description)) {
255
+        if (!is_string($name) || !is_string($description)) {
256 256
             throw new InvalidCommandException;
257 257
         }
258 258
 
Please login to merge, or discard this patch.
src/Traits/LaravelConfigFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@
 block discarded – undo
202 202
      */
203 203
     private function testLaravelConfigFileExists()
204 204
     {
205
-        if (! $this->checkIfLaravelConfigFileExists()) {
205
+        if (!$this->checkIfLaravelConfigFileExists()) {
206 206
             $this->output->writeln('<error>File '.$this->laravel_config_file.' doesn\'t exists');
207 207
 
208 208
             return -1;
Please login to merge, or discard this patch.