@@ -58,7 +58,7 @@ |
||
58 | 58 | /** |
59 | 59 | * Execute the console command. |
60 | 60 | * |
61 | - * @return mixed |
|
61 | + * @return boolean |
|
62 | 62 | */ |
63 | 63 | public function handle() |
64 | 64 | { |
@@ -25,7 +25,7 @@ |
||
25 | 25 | } |
26 | 26 | |
27 | 27 | $app->detectEnvironment( |
28 | - function () |
|
28 | + function() |
|
29 | 29 | { |
30 | 30 | return env('APP_ENV', 'production'); |
31 | 31 | } |
@@ -19,7 +19,8 @@ |
||
19 | 19 | Dotenv::makeMutable(); |
20 | 20 | Dotenv::load($app->environmentPath(), $app->environmentFile()); |
21 | 21 | Dotenv::makeImmutable(); |
22 | - } catch (InvalidArgumentException $e) |
|
22 | + } |
|
23 | + catch (InvalidArgumentException $e) |
|
23 | 24 | { |
24 | 25 | // |
25 | 26 | } |
@@ -148,7 +148,7 @@ |
||
148 | 148 | { |
149 | 149 | $process = new Process($this->generateConsoleCommand($results, true)); |
150 | 150 | |
151 | - $process->run(function ($type, $output) |
|
151 | + $process->run(function($type, $output) |
|
152 | 152 | { |
153 | 153 | $this->command->line($output); |
154 | 154 | }); |
@@ -44,8 +44,7 @@ |
||
44 | 44 | 'Existing .env file was found. Use it for defaults?', |
45 | 45 | true |
46 | 46 | ) |
47 | - ) |
|
48 | - { |
|
47 | + ) { |
|
49 | 48 | $file = '.env'; |
50 | 49 | } |
51 | 50 |