Skip to content

app/Http/RedirectIfAuthenticated.php - Middleware return type issue #50369

Discussion options

You must be logged in to vote

Hey @amrudin-shopcircle ,

You need to tell PHPStan that the handle() method may return a redirect. Something like...

    /**
     * Handle an incoming request.
     *
     * @param  \Closure(\Illuminate\Http\Request): (\Illuminate\Http\Response|\Illuminate\Http\RedirectResponse)  $next
     * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\Response
     */
    public function handle(Request $request, Closure $next)
    {
        /* ... */
        return $next($request);
    }

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by amrudin-shopcircle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants