Skip to content
New issue

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

CheckPermissionMiddleware #8

Closed
Ryune911 opened this issue Dec 17, 2017 · 1 comment
Closed

CheckPermissionMiddleware #8

Ryune911 opened this issue Dec 17, 2017 · 1 comment

Comments

@Ryune911
Copy link

    /**
     * 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次的意思

@lanceWan
Copy link
Owner

@AvatarGit 这个是操作失误,上面那个是不需要的,感谢提醒

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants