Completed
Push — master ( d2c2c6...fb774e )
by Maxim
08:26
created
src/Commands/Setup.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,8 +111,7 @@
 block discarded – undo
111 111
             {
112 112
                 return $step->run($pretend);
113 113
             }
114
-        }
115
-        catch (\Exception $e)
114
+        } catch (\Exception $e)
116 115
         {
117 116
             $this->error($e->getMessage());
118 117
         }
Please login to merge, or discard this patch.
src/Commands/Steps/AbstractStep.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,7 @@
 block discarded – undo
46 46
             {
47 47
                 $return = $this->repeat();
48 48
             }
49
-        }
50
-        else
49
+        } else
51 50
         {
52 51
             $return = $this->repeat();
53 52
         }
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
@@ -46,8 +46,7 @@
 block discarded – undo
46 46
             {
47 47
                 $return = $this->repeat();
48 48
             }
49
-        }
50
-        else
49
+        } else
51 50
         {
52 51
             $return = $this->repeat();
53 52
         }
Please login to merge, or discard this patch.
config/setup.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Lanin\Laravel\SetupWizard\Commands\Steps\DotEnv;
4 3
 use Lanin\Laravel\SetupWizard\Commands\Steps\CreateDatabase;
5
-use Lanin\Laravel\SetupWizard\Commands\Steps\Migrate;
6
-use Lanin\Laravel\SetupWizard\Commands\Steps\Seed;
7 4
 use Lanin\Laravel\SetupWizard\Commands\Steps\CreateUser;
5
+use Lanin\Laravel\SetupWizard\Commands\Steps\DotEnv;
6
+use Lanin\Laravel\SetupWizard\Commands\Steps\Migrate;
8 7
 use Lanin\Laravel\SetupWizard\Commands\Steps\Optimize;
8
+use Lanin\Laravel\SetupWizard\Commands\Steps\Seed;
9 9
 
10 10
 return [
11 11
     // Setup title. Shown in the beginning of setup.
Please login to merge, or discard this patch.