From e30d82fbaa2ed15eff7b1f496ec673b72528ade4 Mon Sep 17 00:00:00 2001 From: "J. King" Date: Fri, 16 Nov 2018 21:35:05 -0500 Subject: [PATCH] Correct signature --- lib/Db/PostgreSQL/Driver.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Db/PostgreSQL/Driver.php b/lib/Db/PostgreSQL/Driver.php index 7e763e8..99154ed 100644 --- a/lib/Db/PostgreSQL/Driver.php +++ b/lib/Db/PostgreSQL/Driver.php @@ -34,7 +34,7 @@ class Driver extends \JKingWeb\Arsse\Db\AbstractDriver { return false; } - protected function makeConnection(string $user, string $pass, string $db, string $host, int $port) { + protected function makeConnection(string $user, string $pass, string $db, string $host, int $port, string $service) { // stub: native interface is not yet supported throw new \Exception; }