We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
/** * Handle an incoming request. * * @param \Illuminate\Http\Request $request * @param \Closure $next * @return mixed */ public function handle($request, Closure $next) { $this->checkPermission(); return $this->checkPermission() ? $next($request) : abort(500, '没有权限访问'); }
$this->checkPermission();没懂调用2次的意思
$this->checkPermission();
The text was updated successfully, but these errors were encountered:
@AvatarGit 这个是操作失误,上面那个是不需要的,感谢提醒
Sorry, something went wrong.
No branches or pull requests
$this->checkPermission();
没懂调用2次的意思The text was updated successfully, but these errors were encountered: