From 346faf1d07f8796b67f2bf903a29cc76f8f30f88 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 15 May 2024 10:45:01 +0200 Subject: [PATCH] chore: Refactor applications.php to remove unused imports and improve code readability --- bootstrap/helpers/applications.php | 1 - 1 file changed, 1 deletion(-) diff --git a/bootstrap/helpers/applications.php b/bootstrap/helpers/applications.php index c0aaf4abf..a1995c645 100644 --- a/bootstrap/helpers/applications.php +++ b/bootstrap/helpers/applications.php @@ -6,7 +6,6 @@ use App\Models\Application; use App\Models\ApplicationDeploymentQueue; use App\Models\Server; use App\Models\StandaloneDocker; -use Illuminate\Support\Collection; use Spatie\Url\Url; function queue_application_deployment(Application $application, string $deployment_uuid, int | null $pull_request_id = 0, string $commit = 'HEAD', bool $force_rebuild = false, bool $is_webhook = false, bool $restart_only = false, ?string $git_type = null, bool $no_questions_asked = false, Server $server = null, StandaloneDocker $destination = null, bool $only_this_server = false, bool $rollback = false)