class Status405 {}

Exception for 405 Method Not Allowed responses

Source

final class Status405 extends Http {
	/**
	 * HTTP status code
	 *
	 * @var integer
	 */
	protected $code = 405;

	/**
	 * Reason phrase
	 *
	 * @var string
	 */
	protected $reason = 'Method Not Allowed';
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.