Skip to content

Commit

Permalink
Update: Authentication.php, Management.php remove unused imports (#761)
Browse files Browse the repository at this point in the history
### Changes

Running "__composer phpcs__" highlights unused imports in the below
files.
1.
[src/API/Authentication.php](main...vishwac09:auth0-PHP:main#diff-32ff4a80e75d34c9a99695eeb43f0282a44126c391aff05fd34c7a30adca5c67)
2.
[src/API/Management.php](main...vishwac09:auth0-PHP:main#diff-60ca405803c26cf6dfc33e9ca7cd9e393b2055e1710bc9b9b6e290ab065bb0a0)

### References

N/A

### Testing

N/A
  • Loading branch information
vishwac09 committed Apr 19, 2024
1 parent 5d132ad commit cc7abb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions src/API/Authentication.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
use Auth0\SDK\API\Authentication\PushedAuthorizationRequest;
use Auth0\SDK\Configuration\SdkConfiguration;
use Auth0\SDK\Contract\API\AuthenticationInterface;
use Auth0\SDK\Exception\Authentication\{ParRequestException, ParResponseException, ParUnexpectedResponseException};
use Auth0\SDK\Exception\{ConfigurationException, NetworkException, TokenException};
use Auth0\SDK\Exception\{ConfigurationException};
use Auth0\SDK\Token\ClientAssertionGenerator;
use Auth0\SDK\Utility\{HttpClient, HttpResponse, Toolkit};
use Auth0\SDK\Utility\{HttpClient, Toolkit};
use Psr\Http\Message\ResponseInterface;

use function is_array;
Expand Down
2 changes: 1 addition & 1 deletion src/API/Management.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Auth0\SDK\Configuration\SdkConfiguration;
use Auth0\SDK\Contract\API\Management\{ActionsInterface, AttackProtectionInterface, BlacklistsInterface, ClientGrantsInterface, ClientsInterface, ConnectionsInterface, DeviceCredentialsInterface, EmailTemplatesInterface, EmailsInterface, GrantsInterface, GuardianInterface, JobsInterface, LogStreamsInterface, LogsInterface, OrganizationsInterface, ResourceServersInterface, RolesInterface, RulesInterface, StatsInterface, TenantsInterface, TicketsInterface, UserBlocksInterface, UsersByEmailInterface, UsersInterface};
use Auth0\SDK\Contract\API\{AuthenticationInterface, ManagementInterface};
use Auth0\SDK\Utility\{HttpClient, HttpRequest, HttpResponse, HttpResponsePaginator};
use Auth0\SDK\Utility\{HttpClient, HttpResponse, HttpResponsePaginator};
use Psr\Cache\CacheItemPoolInterface;

use function is_array;
Expand Down

0 comments on commit cc7abb9

Please sign in to comment.