From a17570c1cb31c12cb091ae7e17a59196e2798f63 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Sun, 13 May 2018 18:33:51 -0400 Subject: [PATCH] Fix styling --- tests/Unit/Http/Controllers/Base/IndexControllerTest.php | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tests/Unit/Http/Controllers/Base/IndexControllerTest.php b/tests/Unit/Http/Controllers/Base/IndexControllerTest.php index bce928c33..6f18138ad 100644 --- a/tests/Unit/Http/Controllers/Base/IndexControllerTest.php +++ b/tests/Unit/Http/Controllers/Base/IndexControllerTest.php @@ -9,22 +9,21 @@ namespace Tests\Unit\Http\Controllers\Base; -use GuzzleHttp\Exception\ConnectException; -use GuzzleHttp\Exception\RequestException; -use GuzzleHttp\Psr7\ServerRequest; use Mockery as m; use Pterodactyl\Models\User; use GuzzleHttp\Psr7\Response; use Pterodactyl\Models\Server; -use Symfony\Component\HttpKernel\Exception\HttpException; +use GuzzleHttp\Psr7\ServerRequest; +use GuzzleHttp\Exception\ConnectException; +use GuzzleHttp\Exception\RequestException; use Tests\Assertions\ControllerAssertionsTrait; use Tests\Unit\Http\Controllers\ControllerTestCase; use Pterodactyl\Http\Controllers\Base\IndexController; use Illuminate\Contracts\Pagination\LengthAwarePaginator; +use Symfony\Component\HttpKernel\Exception\HttpException; use Pterodactyl\Services\DaemonKeys\DaemonKeyProviderService; use Pterodactyl\Contracts\Repository\ServerRepositoryInterface; use Pterodactyl\Contracts\Repository\Daemon\ServerRepositoryInterface as DaemonServerRepositoryInterface; -use Psr\Http\Message\RequestInterface; class IndexControllerTest extends ControllerTestCase {