diff --git a/bootstrap/helpers/docker.php b/bootstrap/helpers/docker.php index fa2a19c2a..355127130 100644 --- a/bootstrap/helpers/docker.php +++ b/bootstrap/helpers/docker.php @@ -536,7 +536,7 @@ function generateLabelsApplication(Application $application, ?ApplicationPreview if ($pull_request_id === 0) { if ($application->fqdn) { $domains = str(data_get($application, 'fqdn'))->explode(','); - switch($application->destination->server->proxyType()) { + switch ($application->destination->server->proxyType()) { case ProxyTypes::TRAEFIK_V2->value: $labels = $labels->merge(fqdnLabelsForTraefik( uuid: $appUuid, @@ -547,7 +547,7 @@ function generateLabelsApplication(Application $application, ?ApplicationPreview is_stripprefix_enabled: $application->isStripprefixEnabled(), redirect_direction: $application->redirect )); - break; + break; case ProxyTypes::CADDY->value: $labels = $labels->merge(fqdnLabelsForCaddy( network: $application->destination->network, @@ -559,7 +559,7 @@ function generateLabelsApplication(Application $application, ?ApplicationPreview is_stripprefix_enabled: $application->isStripprefixEnabled(), redirect_direction: $application->redirect )); - break; + break; } } } else { @@ -569,7 +569,7 @@ function generateLabelsApplication(Application $application, ?ApplicationPreview $domains = collect([]); } - switch($application->destination->server->proxyType()) { + switch ($application->destination->server->proxyType()) { case ProxyTypes::TRAEFIK_V2->value: $labels = $labels->merge(fqdnLabelsForTraefik( uuid: $appUuid, diff --git a/bootstrap/helpers/shared.php b/bootstrap/helpers/shared.php index 9600b13d2..a909b28e9 100644 --- a/bootstrap/helpers/shared.php +++ b/bootstrap/helpers/shared.php @@ -1306,7 +1306,7 @@ function parseDockerComposeFile(Service|Application $resource, bool $isNew = fal $serviceLabels = $serviceLabels->merge($defaultLabels); if (! $isDatabase && $fqdns->count() > 0) { if ($fqdns) { - switch($resource->destination->server->proxyType()) { + switch ($resource->destination->server->proxyType()) { case ProxyTypes::TRAEFIK_V2->value: $serviceLabels = $serviceLabels->merge(fqdnLabelsForTraefik( uuid: $resource->uuid,