From 8e40e0b040ef1a6359119ca855d0eb3292fe7320 Mon Sep 17 00:00:00 2001 From: Wesley Stessens Date: Sun, 17 Mar 2024 16:52:02 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Fix=20styling?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Catalog.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Catalog.php b/src/Catalog.php index 5bf57a5..c253a40 100644 --- a/src/Catalog.php +++ b/src/Catalog.php @@ -151,7 +151,8 @@ public function create(string $catName): int public function getPort(string $catName): int { // TODO: wait for the functionality to be implemented in the server. - return $this->dbPort ?? 0; + return ($this->dbPort ?? 0); + }