Releases: juliomotol/laravel-auth-timeout
Releases · juliomotol/laravel-auth-timeout
v2.0.0 (2020-08-03)
Breaking Changes
- The
AuthTimeoutMiddleware
class'redirectTo()
method signature has changed. If you are overriding this method, you should update your method's signature:
/**
* Get the path the user should be redirected to when they timed out.
*
* @param \Illuminate\Http\Request $request
* @param mixed $guard
*
* @return string|null
*/
protected function redirectTo($request, $guard = null)
{
//
}
Features
- The
AuthTimeoutEvent
class now has a$guard
property.
First Release!
Welcome to Laravel Auth Timeout!
See the documentation to get started.