Exception for 418 I’m A Teapot responses
Source
final class Status418 extends Http {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 418;
/**
* Reason phrase
*
* @var string
*/
protected $reason = "I'm A Teapot";
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.