Completed
Push — master ( 8230c5...e037ad )
by Maxim
03:22
created
src/Commands/Setup.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.
src/Support/Bootstrap/DetectEnvironment.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
         }
26 26
 
27 27
         $app->detectEnvironment(
28
-            function ()
28
+            function()
29 29
             {
30 30
                 return env('APP_ENV', 'production');
31 31
             }
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,8 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
src/Commands/Steps/CreateMysqlDatabase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
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
         });
Please login to merge, or discard this patch.
src/Commands/Steps/DotEnv.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,8 +44,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.