Skip to content

Commit feafb13

Browse files
authored
Apply fixes from StyleCI (tymondesigns#2180)
[ci skip] [skip ci]
1 parent 185d9ad commit feafb13

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)