Skip to content

Commit 9621308

Browse files
Update JWT.php
Updated JWT Provider Imports & Comments
1 parent 12e26dd commit 9621308

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Auth/Provider/JWT.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
namespace Dingo\Api\Auth\Provider;
44

55
use Exception;
6-
use Tymon\JWTAuth\JWTAuth;
6+
use PHPOpenSourceSaver\JWTAuth\JWTAuth;
77
use Dingo\Api\Routing\Route;
88
use Illuminate\Http\Request;
9-
use Tymon\JWTAuth\Exceptions\JWTException;
9+
use PHPOpenSourceSaver\JWTAuth\Exceptions\JWTException;
1010
use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException;
1111

1212
class JWT extends Authorization
1313
{
1414
/**
1515
* The JWTAuth instance.
1616
*
17-
* @var \Tymon\JWTAuth\JWTAuth
17+
* @var \PHPOpenSourceSaver\JWTAuth\JWTAuth
1818
*/
1919
protected $auth;
2020

2121
/**
2222
* Create a new JWT provider instance.
2323
*
24-
* @param \Tymon\JWTAuth\JWTAuth $auth
24+
* @param \PHPOpenSourceSaver\JWTAuth\JWTAuth $auth
2525
*
2626
* @return void
2727
*/

0 commit comments

Comments
 (0)