Completed
Pull Request — master (#58)
by
unknown
07:42
created
app/Files.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,8 +70,7 @@
 block discarded – undo
70 70
             Storage::delete($fileLink);
71 71
             
72 72
             Log::info('File Deleted', ['file_id' => $fileID, 'file_name' => $fileLink, 'user_id' => Auth::user()->user_id]);
73
-        }
74
-        catch (Exception $e)
73
+        } catch (Exception $e)
75 74
         {
76 75
             return false;
77 76
         }
Please login to merge, or discard this patch.
app/Http/Controllers/InstallerController.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,8 +121,7 @@
 block discarded – undo
121 121
             Log::info('Test Email Successfully Sent to '.Auth::user()->email);
122 122
             Mail::to(Auth::user()->email)->send(new TestEmail());
123 123
             return 'success';
124
-        }
125
-        catch (Exception $e)
124
+        } catch (Exception $e)
126 125
         {
127 126
             Log::notice('Test Email Failed.  Message: '.$e);
128 127
             $msg = '['.$e->getCode().'] "'.$e->getMessage().'" on line '.$e->getTrace()[0]['line'].' of file '.$e->getTrace()[0]['file'];
Please login to merge, or discard this patch.