12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * A HTTP Response specific interface that adds the methods required
- * by HTTP responses. Over and above [Kohana_HTTP_Interaction], this
- * interface provides status.
- *
- * @package Kohana
- * @category HTTP
- * @author Kohana Team
- * @since 3.1.0
- * @copyright (c) Kohana Team
- * @license https://koseven.ga/LICENSE.md
- */
- interface Kohana_HTTP_Response extends HTTP_Message {
- /**
- * Sets or gets the HTTP status from this response.
- *
- * // Set the HTTP status to 404 Not Found
- * $response = Response::factory()
- * ->status(404);
- *
- * // Get the current status
- * $status = $response->status();
- *
- * @param integer $code Status to set to this response
- * @return mixed
- */
- public function status($code = NULL);
- }
|