Revert change to example code

This commit is contained in:
Brandon Jansen 2019-02-27 15:52:12 -06:00
parent e3fc0bbe7d
commit 26b38f07e2
1 changed files with 1 additions and 2 deletions

View File

@ -365,8 +365,7 @@ You may also use HTTP Basic Authentication without setting a user identifier coo
*/
public function handle($request, $next)
{
Auth::onceBasic();
return $next($request);
return Auth::onceBasic() ?: $next($request);
}
}