Level 122
It's the return type of the method. Are you seeing this in a controller?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi everyone I am using laravel 10. I am curious something. What is : RedirectResponse?
@onurzdgn The redirect function returns a RedirectResponse object, which you then return from the controller, satisfying the return type.
In other cases, you might want to return a view, in which case the return type will need to be different.
Please or to participate in this conversation.