Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:tymondesigns/jwt-auth into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Apr 27, 2022
2 parents 5285281 + feafb13 commit 014be8d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Providers/JWT/Lcobucci.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 014be8d

Please sign in to comment.