Completed
Push — master ( e899e6...8a219f )
by Sebastian
11:01 queued 01:32
created
app/Http/Controllers/Back/FrontUserController.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,9 @@
 block discarded – undo
57 57
     {
58 58
         $user = $this->frontUserRepository->find($id);
59 59
 
60
-        if (! $user) abort(404);
60
+        if (! $user) {
61
+            abort(404);
62
+        }
61 63
 
62 64
         return view('back.frontUsers.edit')->with(compact('user'));
63 65
     }
Please login to merge, or discard this patch.
app/Http/Controllers/Back/BackUserController.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,9 @@
 block discarded – undo
57 57
     {
58 58
         $user = $this->frontUserRepository->find($id);
59 59
 
60
-        if (! $user) abort(404);
60
+        if (! $user) {
61
+            abort(404);
62
+        }
61 63
 
62 64
         return view('back.frontUsers.edit')->with(compact('user'));
63 65
     }
Please login to merge, or discard this patch.