Passed
Push — dev5 ( 92f243...3534c9 )
by Ron
05:48
created
app/Http/Controllers/Customers/CustomerDetailsController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     //  Submit the new customer form
38 38
     public function store(Request $request)
39 39
     {
40
-        if (!$this->authorize('hasAccess', 'add_customer')) {
40
+        if(!$this->authorize('hasAccess', 'add_customer')) {
41 41
             return abort(403);
42 42
         }
43 43
 
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
         Log::debug('Route '.Route::currentRouteName().' visited by User ID-'.Auth::user()->user_id);
67 67
         Log::notice('New Customer ID-'.$request->custID.' created by User ID-'.Auth::user()->user_id);
68 68
 
69
-        return response()->json(['success' => true ]);
69
+        return response()->json(['success' => true]);
70 70
     }
71 71
 
72 72
 
Please login to merge, or discard this patch.