style: linting

This commit is contained in:
Lorenzo Migliorero
2024-07-18 11:42:41 +02:00
parent 3be06ced92
commit be6d74a6a3
2 changed files with 5 additions and 5 deletions

View File

@@ -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,
@@ -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,

View File

@@ -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,