fix: remove stale class const. argument

This commit is contained in:
Victor Westerlund 2023-11-02 10:37:48 +01:00
parent 8ff61b7275
commit 062644a3a7

View file

@ -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());
}