@@ -18,7 +18,6 @@ discard block |
||
| 18 | 18 | * Create a new authentication controller instance. |
| 19 | 19 | * |
| 20 | 20 | * @param \Illuminate\Contracts\Auth\Guard $auth |
| 21 | - * @param \Illuminate\Contracts\Auth\Registrar $registrar |
|
| 22 | 21 | * @return void |
| 23 | 22 | */ |
| 24 | 23 | public function __construct(Guard $auth) |
@@ -31,7 +30,7 @@ discard block |
||
| 31 | 30 | /** |
| 32 | 31 | * Show the application login form. |
| 33 | 32 | * |
| 34 | - * @return \Illuminate\Http\Response |
|
| 33 | + * @return \Illuminate\View\View |
|
| 35 | 34 | */ |
| 36 | 35 | public function login() |
| 37 | 36 | { |
@@ -42,7 +41,7 @@ discard block |
||
| 42 | 41 | * Handle a login request to the application. |
| 43 | 42 | * |
| 44 | 43 | * @param \Illuminate\Http\Request $request |
| 45 | - * @return \Illuminate\Http\Response |
|
| 44 | + * @return \Illuminate\Http\RedirectResponse |
|
| 46 | 45 | */ |
| 47 | 46 | public function authenticate(Request $request) |
| 48 | 47 | { |
@@ -67,7 +66,7 @@ discard block |
||
| 67 | 66 | /** |
| 68 | 67 | * Log the user out of the application. |
| 69 | 68 | * |
| 70 | - * @return \Illuminate\Http\Response |
|
| 69 | + * @return \Illuminate\Http\RedirectResponse |
|
| 71 | 70 | */ |
| 72 | 71 | public function logout() |
| 73 | 72 | { |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | /** |
| 27 | 27 | * Show the application welcome screen to the user. |
| 28 | 28 | * |
| 29 | - * @return Response |
|
| 29 | + * @return \Illuminate\View\View |
|
| 30 | 30 | */ |
| 31 | 31 | public function index() |
| 32 | 32 | { |
@@ -25,6 +25,9 @@ |
||
| 25 | 25 | return $this->mounts; |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | + /** |
|
| 29 | + * @param string $studio |
|
| 30 | + */ |
|
| 28 | 31 | public function get($studio) |
| 29 | 32 | { |
| 30 | 33 | $results = new Collection; |
@@ -11,7 +11,6 @@ discard block |
||
| 11 | 11 | /** |
| 12 | 12 | * Create a new filter instance. |
| 13 | 13 | * |
| 14 | - * @param Guard $auth |
|
| 15 | 14 | * @return void |
| 16 | 15 | */ |
| 17 | 16 | public function __construct($fromIp, $toIp) |
@@ -24,8 +23,7 @@ discard block |
||
| 24 | 23 | * Handle an incoming request. |
| 25 | 24 | * |
| 26 | 25 | * @param \Illuminate\Http\Request $request |
| 27 | - * @param \Closure $next |
|
| 28 | - * @return mixed |
|
| 26 | + * @return boolean |
|
| 29 | 27 | */ |
| 30 | 28 | public function inRange($request) |
| 31 | 29 | { |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | public $timestamps = false; |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * @return mixed |
|
| 37 | + * @return \Illuminate\Database\Eloquent\Relations\BelongsTo |
|
| 38 | 38 | */ |
| 39 | 39 | public function role() |
| 40 | 40 | { |