Documentation

Request extends AbstractRequest
in package
implements RequestInterface

A classic Request.

Interfaces, Classes, Traits and Enums

RequestInterface
The classic Request interface.

Table of Contents

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

Properties

Methods

__construct()

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

The URL

$method : string = 'GET'

GET (default), 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

__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

getUrl()

public getUrl() : string
Return values
string

The URL

getUrlVariables()

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

the value of the URL variables contained in the URL template

Search results