REDIRECT
REDIRECT = 'REDIRECT' : string
Redirect log level.
This constant represents the log level for redirecting. It can be used to indicate a log entry that involves a redirection process.
Response class.
The Response
class provides methods to build and send HTTP responses in an
Omega application.
$content : string|\Omega\View\View
Response content.
content(string|\Omega\View\View|null $content = null) : string|self|\Omega\View\View|null
Get or set the response content.
string|\Omega\View\View|null | $content | Holds the response content (optional). |
Returns the content if no argument is provided, otherwise returns $this.
redirect(string|null $redirect = null) : string|static|null
Set the response to a redirect with the given URL.
string|null | $redirect | Holds the URL to redirect to (optional). |
Returns the redirect URL if no argument is provided, otherwise returns $this.