@@ -122,7 +122,7 @@ |
||
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 | { |
@@ -33,7 +33,7 @@ |
||
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 | // ------------------------------------------------------- |