From f3a371a61f6ca5886d161b62fec307e89ecf9fd0 Mon Sep 17 00:00:00 2001 From: vishwac09 Date: Thu, 18 Apr 2024 21:32:31 +0530 Subject: [PATCH] Update: Authentication.php, Management.php remove unused imports --- src/API/Authentication.php | 5 ++--- src/API/Management.php | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/API/Authentication.php b/src/API/Authentication.php index 94c01259..45039cd8 100644 --- a/src/API/Authentication.php +++ b/src/API/Authentication.php @@ -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; diff --git a/src/API/Management.php b/src/API/Management.php index 3d93b8b8..5f842d4e 100644 --- a/src/API/Management.php +++ b/src/API/Management.php @@ -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;