Elgg  Version 2.3
RedirectResponse.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Elgg\Http;
4 
8 class RedirectResponse extends OkResponse {
9 
19  parent::__construct('', $status_code, $forward_url);
20  }
21 }
const ELGG_HTTP_FOUND
Definition: elgglib.php:2143
__construct($forward_url=REFERRER, $status_code=ELGG_HTTP_FOUND)
Constructor.
const REFERRER
Definition: elgglib.php:2113
Redirect response builder.
Response builder.
Definition: OkResponse.php:10