我在自定义外观类中使用laravel ThrottlesLogins
作为特征。我正在使用
if($this->hasTooManyLoginAttempts($request))
return $this->ThrottleActions($request);
在我的登录方法中,但为什么我面临主题错误
Call to undefined method Modules\User\Services\web\facade\WebAuth::loginUsername()
然而在当地它的工作正常。但是当我更新代码在线服务器时。我正面临这个错误。
此方法loginUsername()
已存在于ThrottlesLogins
特征中。