From feafb135e1ac4e64deb2100e28d3261033a2190f Mon Sep 17 00:00:00 2001 From: Sean Tymon Date: Fri, 22 Apr 2022 09:22:05 +0100 Subject: [PATCH] Apply fixes from StyleCI (#2180) [ci skip] [skip ci] --- src/Providers/JWT/Lcobucci.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Providers/JWT/Lcobucci.php b/src/Providers/JWT/Lcobucci.php index ab4c3886..4e08e561 100644 --- a/src/Providers/JWT/Lcobucci.php +++ b/src/Providers/JWT/Lcobucci.php @@ -11,21 +11,21 @@ namespace Tymon\JWTAuth\Providers\JWT; -use Exception; use DateTimeImmutable; use DateTimeInterface; +use Exception; +use Illuminate\Support\Collection; +use Lcobucci\JWT\Configuration; use Lcobucci\JWT\Signer; +use Lcobucci\JWT\Signer\Ecdsa; use Lcobucci\JWT\Signer\Key; +use Lcobucci\JWT\Signer\Key\InMemory; use Lcobucci\JWT\Signer\Rsa; -use Lcobucci\JWT\Signer\Ecdsa; -use Lcobucci\JWT\Configuration; use Lcobucci\JWT\Token\Builder; -use Illuminate\Support\Collection; -use Lcobucci\JWT\Signer\Key\InMemory; use Lcobucci\JWT\Token\RegisteredClaims; +use Lcobucci\JWT\Validation\Constraint\SignedWith; use Tymon\JWTAuth\Contracts\Providers\JWT; use Tymon\JWTAuth\Exceptions\JWTException; -use Lcobucci\JWT\Validation\Constraint\SignedWith; use Tymon\JWTAuth\Exceptions\TokenInvalidException; class Lcobucci extends Provider implements JWT