fix: remove stale class const. argument (#15)

This commit is contained in:
Victor Westerlund 2023-11-02 10:38:21 +01:00 committed by GitHub
parent 5b78cc2ba2
commit 5abcb48010
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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