@@ -13,7 +13,6 @@ |
||
13 | 13 | |
14 | 14 | use Illuminate\Http\Request; |
15 | 15 | use Illuminate\Support\Str; |
16 | -use Illuminate\Support\Arr; |
|
17 | 16 | use Tymon\JWTAuth\Support\Utils; |
18 | 17 | use Tymon\JWTAuth\Claims\Factory as ClaimFactory; |
19 | 18 | use Illuminate\Support\Collection; |
@@ -61,7 +61,7 @@ |
||
61 | 61 | /** |
62 | 62 | * Get the currently authenticated user |
63 | 63 | * |
64 | - * @return mixed |
|
64 | + * @return \Illuminate\Contracts\Auth\Authenticatable|null |
|
65 | 65 | */ |
66 | 66 | public function user() |
67 | 67 | { |
@@ -11,7 +11,6 @@ |
||
11 | 11 | |
12 | 12 | namespace Tymon\JWTAuth\Providers\Auth; |
13 | 13 | |
14 | -use Exception; |
|
15 | 14 | use Tymon\JWTAuth\Contracts\Providers\Auth; |
16 | 15 | use Illuminate\Contracts\Auth\Guard as GuardContract; |
17 | 16 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | /** |
28 | 28 | * Try to parse the token from the request query string |
29 | 29 | * |
30 | - * @param Illuminate\Http\Request $request |
|
30 | + * @param Request $request |
|
31 | 31 | * |
32 | 32 | * @return null|string |
33 | 33 | */ |