From 5abcb480101cd20238d90c0e3078efe5b2601320 Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Thu, 2 Nov 2023 10:38:21 +0100 Subject: [PATCH] fix: remove stale class const. argument (#15) --- src/MySQL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MySQL.php b/src/MySQL.php index 2df98f8..4791094 100644 --- a/src/MySQL.php +++ b/src/MySQL.php @@ -21,7 +21,7 @@ private int|string|null $limit = null; // Pass constructor arguments to driver - function __construct(string $table) { + function __construct() { parent::__construct(...func_get_args()); }