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