@@ -10,7 +10,7 @@ |
||
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. |
@@ -135,7 +135,7 @@ discard block |
||
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 |
||
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 | } |
@@ -45,7 +45,7 @@ |
||
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); |