From d5216d5b14588b2b99d51d02ae8b6935864371a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 7 Feb 2024 10:17:34 +0100 Subject: [PATCH] Linter fix --- app/controllers/api/projects.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/projects.php b/app/controllers/api/projects.php index 5318eb4384..4ce673c977 100644 --- a/app/controllers/api/projects.php +++ b/app/controllers/api/projects.php @@ -175,7 +175,7 @@ App::post('/v1/projects') // Useful for ZDT to mirror the project to destination $dbForProject = $hooks->trigger('getProxyProjectDatabase', [ $project, $pools, $cache ]); - if(empty($dbForProject)) { + if (empty($dbForProject)) { $dbForProject = new Database($pools->get($database)->pop()->getResource(), $cache); $dbForProject->setNamespace("_{$project->getInternalId()}"); $dbForProject->create();