Completed
Push — master ( c83b46...1b1863 )
by Cristian
02:01
created
src/app/Http/Controllers/Auth/LoginController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
      * Handle a registration request for the application.
123 123
      *
124 124
      * @param  \Illuminate\Http\Request  $request
125
-     * @return \Illuminate\Http\Response
125
+     * @return \Illuminate\Http\RedirectResponse
126 126
      */
127 127
     public function register(Request $request)
128 128
     {
Please login to merge, or discard this patch.
src/app/Http/Controllers/Auth/ResetPasswordController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $this->middleware('guest');
34 34
 
35 35
         // where to redirect after password was reset
36
-        $this->redirectTo = property_exists($this, 'redirectTo')? $this->redirectTo : config('backpack.base.route_prefix', 'admin').'/dashboard';
36
+        $this->redirectTo = property_exists($this, 'redirectTo') ? $this->redirectTo : config('backpack.base.route_prefix', 'admin').'/dashboard';
37 37
     }
38 38
 
39 39
     // -------------------------------------------------------
Please login to merge, or discard this patch.