Completed
Push — develop ( ce7aaf...adea53 )
by Greg
16s
created
app/Http/Helpers/Installer/PermissionsChecker.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,8 +34,7 @@
 block discarded – undo
34 34
             if(!($this->getPermission($folder) >= $permission))
35 35
             {
36 36
                 $this->addFileAndSetErrors($folder, $permission, false);
37
-            }
38
-            else {
37
+            } else {
39 38
                 $this->addFile($folder, $permission, true);
40 39
             }
41 40
         }
Please login to merge, or discard this patch.
app/Http/Helpers/Installer/DatabaseManager.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,8 +31,7 @@  discard block
 block discarded – undo
31 31
     {
32 32
         try{
33 33
             Artisan::call('migrate', ["--force"=> true ]);
34
-        }
35
-        catch(Exception $e){
34
+        } catch(Exception $e){
36 35
             return $this->response($e->getMessage());
37 36
         }
38 37
 
@@ -48,8 +47,7 @@  discard block
 block discarded – undo
48 47
     {
49 48
         try{
50 49
             Artisan::call('db:seed');
51
-        }
52
-        catch(Exception $e){
50
+        } catch(Exception $e){
53 51
             return $this->response($e->getMessage());
54 52
         }
55 53
 
Please login to merge, or discard this patch.
app/Http/Controllers/InstallerController.php 1 patch
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
             $mdfile = public_path("markdown/{$filename}");
136 136
             try {
137 137
                 file_put_contents($mdfile, $request->announce);
138
-            }  catch(Exception $e) {
138
+            } catch(Exception $e) {
139 139
                 return $redirect->route('KleisInstaller::stepCustomization')
140 140
                                 ->withInput();
141 141
             }
Please login to merge, or discard this patch.