WpOrg\Requests\Exception\Http

Status405{}WP 1.0

Exception for 405 Method Not Allowed responses

Хуков нет.

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

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

Методы

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

Заметки

  • Пакет: Requests\Exceptions

Код Status405{} WP 6.6.2

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

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