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