We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97cf0c0 commit 543a36aCopy full SHA for 543a36a
src/Auth.php
@@ -160,10 +160,10 @@ public function getProvider(): UserModel
160
*/
161
public function __call(string $method, array $args)
162
{
163
- $authenticate = $this->authenticate->factory($this->alias);
+ $authenticator = $this->authenticate->factory($this->alias);
164
165
- if (method_exists($authenticate, $method)) {
166
- return $authenticate->{$method}(...$args);
+ if (method_exists($authenticator, $method)) {
+ return $authenticator->{$method}(...$args);
167
}
168
169
0 commit comments