Exception for 501 Not Implemented responses
Source
final class Status501 extends Http {
/**
* HTTP status code
*
* @var integer
*/
protected $code = 501;
/**
* Reason phrase
*
* @var string
*/
protected $reason = 'Not Implemented';
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.