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