Completed
Push — master ( b2f402...60b6a2 )
by Sergi Tur
03:31
created
src/Console/SqliteCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
  */
11 11
 class SqliteCommand extends LlumCommand
12 12
 {
13
-    use TouchSqliteFile,SqliteEnv;
13
+    use TouchSqliteFile, SqliteEnv;
14 14
 
15 15
     /**
16 16
      * Command name.
Please login to merge, or discard this patch.
src/Console/LlumCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
      */
136 136
     protected function installConfigAppFile()
137 137
     {
138
-        if (! $this->checkIfLaravelConfigFileExists()) {
138
+        if (!$this->checkIfLaravelConfigFileExists()) {
139 139
             $this->output->writeln('<error>File '.$this->laravel_config_file.' doesn\'t exists');
140 140
 
141 141
             return -1;
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
 
245 245
         $process = new Process($composer.' require '.$package.'', null, null, null, null);
246 246
         $this->output->writeln('<info>Running composer require '.$package.'</info>');
247
-        $process->run(function ($type, $line) {
247
+        $process->run(function($type, $line) {
248 248
             $this->output->write($line);
249 249
         });
250 250
     }
Please login to merge, or discard this patch.
src/Traits/Serve.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
     protected function check_port($port = 8000, $host = '127.0.0.1', $timeout = 3)
46 46
     {
47 47
         $fp = @fsockopen($host, $port, $errno, $errstr, $timeout);
48
-        if (! $fp) {
48
+        if (!$fp) {
49 49
             return true;
50 50
         } else {
51 51
             fclose($fp);
Please login to merge, or discard this patch.