PHP Класс LeagueWrap\Response

Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$code integer The HTTP code resulting from the request.
$content string The content of the response.
$headers array Request's headers.

Открытые методы

Метод Описание
__construct ( string $content, integer $code, array $headers = [] ) The primary content of the response.
__toString ( ) : string Returns the content of the response as a string.
getCode ( ) : integer Returns the code associated with the response.
getHeader ( string $name ) : string | null Return header's value by key.
getHeaders ( ) : array Return array of header from response in format header key => header value.
hasHeader ( string $name ) : boolean Check if header key is present

Описание методов

__construct() публичный Метод

The primary content of the response.
public __construct ( string $content, integer $code, array $headers = [] )
$content string
$code integer
$headers array

__toString() публичный Метод

Returns the content of the response as a string.
public __toString ( ) : string
Результат string

getCode() публичный Метод

Returns the code associated with the response.
public getCode ( ) : integer
Результат integer

getHeader() публичный Метод

If the header is not present, return null.
public getHeader ( string $name ) : string | null
$name string
Результат string | null

getHeaders() публичный Метод

Only one value per header key is allowed.
public getHeaders ( ) : array
Результат array

hasHeader() публичный Метод

Check if header key is present
public hasHeader ( string $name ) : boolean
$name string
Результат boolean

Описание свойств

$code защищенное свойство

The HTTP code resulting from the request.
protected int $code
Результат integer

$content защищенное свойство

The content of the response.
protected string $content
Результат string

$headers защищенное свойство

Request's headers.
protected array $headers
Результат array