From 6c2bd0c11d95c8433fc42205902cb9e271eb4dc9 Mon Sep 17 00:00:00 2001 From: mscherer Date: Tue, 24 Sep 2024 01:32:55 +0200 Subject: [PATCH] Remove deprecation. --- src/Auth/BaseAuthenticate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Auth/BaseAuthenticate.php b/src/Auth/BaseAuthenticate.php index 3cb4c280..9f7b460f 100644 --- a/src/Auth/BaseAuthenticate.php +++ b/src/Auth/BaseAuthenticate.php @@ -171,7 +171,7 @@ protected function _query(string $username): SelectQuery { $options['username'] = $options['username'] ?? $username; - return $table->find($finder, $options); + return $table->find($finder, ...$options); } /**