Skip to content

Commit

Permalink
refactor: fix phpcs error
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuaki640 committed Aug 19, 2024
1 parent 79ddf4d commit f97d6d5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Controllers/CallbackControllerAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
use Throwable;

use function is_string;
use function sprintf;

/**
* @api
Expand Down
2 changes: 2 additions & 0 deletions src/Controllers/LoginControllerAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\Response;

use function sprintf;

/**
* Controller for handling a login request.
*
Expand Down
2 changes: 2 additions & 0 deletions src/Controllers/LogoutControllerAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
use Illuminate\Http\Request;
use Symfony\Component\HttpFoundation\Response;

use function sprintf;

/**
* Controller for handling a logout request.
*
Expand Down
1 change: 1 addition & 0 deletions src/Guards/GuardAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
use function is_array;
use function is_int;
use function is_string;
use function sprintf;

/**
* @internal
Expand Down
1 change: 1 addition & 0 deletions src/UserProviderAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
use Illuminate\Support\Facades\Cache;

use function is_string;
use function sprintf;

/**
* User provider for the Auth0 user repository.
Expand Down

0 comments on commit f97d6d5

Please sign in to comment.