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 ($pull_request_id === 0) {
if ($application->fqdn) { if ($application->fqdn) {
$domains = str(data_get($application, 'fqdn'))->explode(','); $domains = str(data_get($application, 'fqdn'))->explode(',');
switch($application->destination->server->proxyType()) { switch ($application->destination->server->proxyType()) {
case ProxyTypes::TRAEFIK_V2->value: case ProxyTypes::TRAEFIK_V2->value:
$labels = $labels->merge(fqdnLabelsForTraefik( $labels = $labels->merge(fqdnLabelsForTraefik(
uuid: $appUuid, uuid: $appUuid,
@@ -547,7 +547,7 @@ function generateLabelsApplication(Application $application, ?ApplicationPreview
is_stripprefix_enabled: $application->isStripprefixEnabled(), is_stripprefix_enabled: $application->isStripprefixEnabled(),
redirect_direction: $application->redirect redirect_direction: $application->redirect
)); ));
break; break;
case ProxyTypes::CADDY->value: case ProxyTypes::CADDY->value:
$labels = $labels->merge(fqdnLabelsForCaddy( $labels = $labels->merge(fqdnLabelsForCaddy(
network: $application->destination->network, network: $application->destination->network,
@@ -559,7 +559,7 @@ function generateLabelsApplication(Application $application, ?ApplicationPreview
is_stripprefix_enabled: $application->isStripprefixEnabled(), is_stripprefix_enabled: $application->isStripprefixEnabled(),
redirect_direction: $application->redirect redirect_direction: $application->redirect
)); ));
break; break;
} }
} }
} else { } else {
@@ -569,7 +569,7 @@ function generateLabelsApplication(Application $application, ?ApplicationPreview
$domains = collect([]); $domains = collect([]);
} }
switch($application->destination->server->proxyType()) { switch ($application->destination->server->proxyType()) {
case ProxyTypes::TRAEFIK_V2->value: case ProxyTypes::TRAEFIK_V2->value:
$labels = $labels->merge(fqdnLabelsForTraefik( $labels = $labels->merge(fqdnLabelsForTraefik(
uuid: $appUuid, uuid: $appUuid,

View File

@@ -1306,7 +1306,7 @@ function parseDockerComposeFile(Service|Application $resource, bool $isNew = fal
$serviceLabels = $serviceLabels->merge($defaultLabels); $serviceLabels = $serviceLabels->merge($defaultLabels);
if (! $isDatabase && $fqdns->count() > 0) { if (! $isDatabase && $fqdns->count() > 0) {
if ($fqdns) { if ($fqdns) {
switch($resource->destination->server->proxyType()) { switch ($resource->destination->server->proxyType()) {
case ProxyTypes::TRAEFIK_V2->value: case ProxyTypes::TRAEFIK_V2->value:
$serviceLabels = $serviceLabels->merge(fqdnLabelsForTraefik( $serviceLabels = $serviceLabels->merge(fqdnLabelsForTraefik(
uuid: $resource->uuid, uuid: $resource->uuid,