WpOrg\Requests\Exception\Http

Status304{}WP 1.0

Exception for 304 Not Modified responses

Хуков нет.

Использование

$Status304 = new Status304();
// use class methods

Методы

Нет Методов у класса.

Заметки

  • Пакет: Requests\Exceptions

Код Status304{} WP 6.6.1

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

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