From f7bc9f005f7a0bc823a0c7758c24cce7cce5b872 Mon Sep 17 00:00:00 2001 From: Lance Pioch Date: Sat, 23 Mar 2024 08:10:28 -0400 Subject: [PATCH] Styling fixes --- app/Models/Server.php | 1 - bootstrap/app.php | 1 - tests/Integration/Api/Client/Server/CommandControllerTest.php | 1 - 3 files changed, 3 deletions(-) diff --git a/app/Models/Server.php b/app/Models/Server.php index 47ffee504..fb82617d9 100644 --- a/app/Models/Server.php +++ b/app/Models/Server.php @@ -4,7 +4,6 @@ namespace App\Models; use App\Exceptions\Http\Connection\DaemonConnectionException; use GuzzleHttp\Exception\GuzzleException; -use GuzzleHttp\Exception\TransferException; use Illuminate\Notifications\Notifiable; use Illuminate\Database\Query\JoinClause; use Illuminate\Support\Facades\Http; diff --git a/bootstrap/app.php b/bootstrap/app.php index fd76a369a..21b41272f 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -61,4 +61,3 @@ return Application::configure(basePath: dirname(__DIR__)) }) ->create(); - diff --git a/tests/Integration/Api/Client/Server/CommandControllerTest.php b/tests/Integration/Api/Client/Server/CommandControllerTest.php index c095b8762..20800b914 100644 --- a/tests/Integration/Api/Client/Server/CommandControllerTest.php +++ b/tests/Integration/Api/Client/Server/CommandControllerTest.php @@ -85,7 +85,6 @@ class CommandControllerTest extends ClientApiIntegrationTestCase $this->instance(Server::class, $server); - $request = new SendCommandRequest(['command' => 'say Test']); $cc = resolve(CommandController::class);