WpOrg\Requests\Exception\Http

Status504{}WP 1.0

Exception for 504 Gateway Timeout responses

Хуков нет.

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

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

Методы

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

Заметки

  • Пакет: Requests\Exceptions

Код Status504{} WP 6.7.1

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

	/**
	 * Reason phrase
	 *
	 * @var string
	 */
	protected $reason = 'Gateway Timeout';
}