diff --git a/bootstrap/helpers/shared.php b/bootstrap/helpers/shared.php index 7aab313c2..8b7422ad4 100644 --- a/bootstrap/helpers/shared.php +++ b/bootstrap/helpers/shared.php @@ -56,8 +56,6 @@ use Symfony\Component\Yaml\Yaml; use Visus\Cuid2\Cuid2; -use function PHPUnit\Framework\isEmpty; - function base_configuration_dir(): string { return '/data/coolify'; @@ -2207,7 +2205,7 @@ function checkIfDomainIsAlreadyUsed(Collection|array $domains, ?string $teamId, return true; } foreach ($serviceApplications as $app) { - if (isEmpty($app->fqdn)) { + if (str($app->fqdn)->isEmpty()) { continue; } $list_of_domains = collect(explode(',', $app->fqdn))->filter(fn ($fqdn) => $fqdn !== '');