From 9e883d91e62cfff7cba5ce0f1584cc974e028fb5 Mon Sep 17 00:00:00 2001 From: "dorian.hodin" Date: Mon, 6 Mar 2023 14:16:35 +0100 Subject: [PATCH] Try to make API work again 3 --- Source/API/script/Config/ConnectClass.php | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/API/script/Config/ConnectClass.php b/Source/API/script/Config/ConnectClass.php index feaa2b9..440d095 100644 --- a/Source/API/script/Config/ConnectClass.php +++ b/Source/API/script/Config/ConnectClass.php @@ -21,7 +21,6 @@ class ConnectClass{ function connect(): int|Connection { try { - echo $this->dsn." ".$this->login." ".$this->password; $connection = new Connection($this->dsn,$this->login,$this->password); }catch (PDOException $e){ throw new PDOException($e->getMessage(), $e->getCode(), $e);