Documentation

AbstractRequest
in package

An HTTP Request.

Table of Contents

$headers  : mixed
$messageBody  : mixed
$method  : mixed
$urlVariables  : mixed
__set()  : mixed
The magic setter is overridden to insure immutability.
getHeaders()  : array<string|int, mixed>
getMessageBody()  : AbstractMessageBody
getMethod()  : string
getUrlVariables()  : array<string|int, mixed>
__construct()  : mixed

Properties

Methods

__set()

The magic setter is overridden to insure immutability.

public final __set( $name,  $value) : mixed
Parameters
$name :
$value :
Return values
mixed

getHeaders()

public getHeaders() : array<string|int, mixed>
Return values
array<string|int, mixed>

The optional headers

getMethod()

public getMethod() : string
Return values
string

GET, POST, PUT, PATCH or DELETE

getUrlVariables()

public getUrlVariables() : array<string|int, mixed>
Return values
array<string|int, mixed>

the value of the URL variables contained in the URL template

__construct()

protected __construct([string $method = 'GET' ][, array<string|int, mixed> $urlVariables = null ][, AbstractMessageBody $messageBody = null ][, array<string|int, mixed> $headers = null ]) : mixed
Parameters
$method : string = 'GET'

GET, POST, PUT, PATCH or DELETE

$urlVariables : array<string|int, mixed> = null

The value of the URL variables contained in the URL template

$messageBody : AbstractMessageBody = null

The messageBody to send with the request

$headers : array<string|int, mixed> = null

Optional headers

Return values
mixed

Search results