Skip to content

Commit 014be8d

Browse files
committed
Merge branch 'develop' of github.com:tymondesigns/jwt-auth into develop
2 parents 5285281 + feafb13 commit 014be8d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Providers/JWT/Lcobucci.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,21 @@
1111

1212
namespace Tymon\JWTAuth\Providers\JWT;
1313

14-
use Exception;
1514
use DateTimeImmutable;
1615
use DateTimeInterface;
16+
use Exception;
17+
use Illuminate\Support\Collection;
18+
use Lcobucci\JWT\Configuration;
1719
use Lcobucci\JWT\Signer;
20+
use Lcobucci\JWT\Signer\Ecdsa;
1821
use Lcobucci\JWT\Signer\Key;
22+
use Lcobucci\JWT\Signer\Key\InMemory;
1923
use Lcobucci\JWT\Signer\Rsa;
20-
use Lcobucci\JWT\Signer\Ecdsa;
21-
use Lcobucci\JWT\Configuration;
2224
use Lcobucci\JWT\Token\Builder;
23-
use Illuminate\Support\Collection;
24-
use Lcobucci\JWT\Signer\Key\InMemory;
2525
use Lcobucci\JWT\Token\RegisteredClaims;
26+
use Lcobucci\JWT\Validation\Constraint\SignedWith;
2627
use Tymon\JWTAuth\Contracts\Providers\JWT;
2728
use Tymon\JWTAuth\Exceptions\JWTException;
28-
use Lcobucci\JWT\Validation\Constraint\SignedWith;
2929
use Tymon\JWTAuth\Exceptions\TokenInvalidException;
3030

3131
class Lcobucci extends Provider implements JWT

0 commit comments

Comments
 (0)