From 08d86dbed160f4ee749f35a782bc086df7010c63 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 30 Jun 2020 14:20:43 -0400 Subject: [PATCH] Reordered imports --- src/Http/Authenticator.php | 3 +-- src/Http/RestClientBuilder.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Http/Authenticator.php b/src/Http/Authenticator.php index 327e08d..e513b2b 100644 --- a/src/Http/Authenticator.php +++ b/src/Http/Authenticator.php @@ -8,10 +8,9 @@ use GuzzleHttp\Client; use HelpScout\Api\Http\Auth\Auth; use HelpScout\Api\Http\Auth\ClientCredentials; - -use HelpScout\Api\Http\Auth\LegacyCredentials; use HelpScout\Api\Http\Auth\CodeCredentials; use HelpScout\Api\Http\Auth\HandlesTokenRefreshes; +use HelpScout\Api\Http\Auth\LegacyCredentials; use HelpScout\Api\Http\Auth\NullCredentials; use HelpScout\Api\Http\Auth\RefreshCredentials; diff --git a/src/Http/RestClientBuilder.php b/src/Http/RestClientBuilder.php index 6d3be47..98f5c5e 100644 --- a/src/Http/RestClientBuilder.php +++ b/src/Http/RestClientBuilder.php @@ -13,11 +13,10 @@ use GuzzleHttp\Psr7\Response; use HelpScout\Api\Http\Auth\Auth; use HelpScout\Api\Http\Auth\ClientCredentials; -use HelpScout\Api\Http\Auth\LegacyCredentials; use HelpScout\Api\Http\Auth\HandlesTokenRefreshes; +use HelpScout\Api\Http\Auth\LegacyCredentials; use HelpScout\Api\Http\Auth\NullCredentials; use HelpScout\Api\Http\Auth\RefreshCredentials; -use HelpScout\Api\Http\Handlers\AuthenticationHandler; use HelpScout\Api\Http\Handlers\ClientErrorHandler; use HelpScout\Api\Http\Handlers\RateLimitHandler; use HelpScout\Api\Http\Handlers\ValidationHandler;