Skip to content

Commit 5dc7915

Browse files
andrasbacsaigithub-actions[bot]
authored andcommitted
Fix styling
1 parent 8731d04 commit 5dc7915

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

bootstrap/helpers/shared.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22

33
use App\Enums\ApplicationDeploymentStatus;
4-
use App\Models\ApplicationDeploymentQueue;
54
use App\Jobs\ServerFilesFromServerJob;
65
use App\Models\Application;
6+
use App\Models\ApplicationDeploymentQueue;
77
use App\Models\ApplicationPreview;
88
use App\Models\EnvironmentVariable;
99
use App\Models\InstanceSettings;
@@ -2271,7 +2271,8 @@ function get_public_ips()
22712271
}
22722272
}
22732273

2274-
function isAnyDeploymentInprogress() {
2274+
function isAnyDeploymentInprogress()
2275+
{
22752276
// Only use it in the deployment script
22762277
$count = ApplicationDeploymentQueue::whereIn('status', [ApplicationDeploymentStatus::IN_PROGRESS, ApplicationDeploymentStatus::QUEUED])->count();
22772278
if ($count > 0) {

0 commit comments

Comments
 (0)