Completed
Push — misc-fixes ( bf9a24...687738 )
by Tony
03:47
created
app/Http/Requests/UpdateUserRequest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     {
56 56
         if ($this->input('password')) {
57 57
             $rules = ['password'              => 'required|min:5|max:255',
58
-                      'password_confirmation' => 'required|same:password',
58
+                        'password_confirmation' => 'required|same:password',
59 59
             ];
60 60
             if (!Auth::user()->isAdmin()) {
61 61
                 $rules['current_password'] = 'required|password:user_id';
Please login to merge, or discard this patch.
app/Api/Controllers/DashboardWidgetController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
      */
74 74
     public function show(Request $request, $id)
75 75
     {
76
-        $widget  = Widgets::find($id);
76
+        $widget = Widgets::find($id);
77 77
         return array('widget' => $widget);
78 78
     }
79 79
 
Please login to merge, or discard this patch.