WpOrg\Requests\Exception\Http

Status418{}WP 1.0

Exception for 418 I'm A Teapot responses

Хуков нет.

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

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

Методы

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

Заметки

  • Пакет: Requests\Exceptions

Код Status418{} WP 6.7.1

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

	/**
	 * Reason phrase
	 *
	 * @var string
	 */
	protected $reason = "I'm A Teapot";
}