final class Request implements RequestInterface

internal  
 

Methods

__construct(string $path, string $method, string $body, array $headers, bool $pipeline, bool $usePipelineRead)

No description

string
getPath()

Get the request path.

string
getMethod()

Get the request method.

array
getHeaders()

Get the request headers.

string
getBody()

Get the request body.

bool
isPipeline()

Determine whether the request body remains open.

bool
usesPipelineRead()

Determine whether the response is read incrementally.

Details

at line 17
__construct(string $path, string $method, string $body, array $headers, bool $pipeline, bool $usePipelineRead)

No description

Parameters

string $path
string $method
string $body
array $headers
bool $pipeline
bool $usePipelineRead

at line 30
string getPath()

Get the request path.

Return Value

string

at line 38
string getMethod()

Get the request method.

Return Value

string

at line 48
array getHeaders()

Get the request headers.

Return Value

array

at line 56
string getBody()

Get the request body.

Return Value

string

at line 64
bool isPipeline()

Determine whether the request body remains open.

Return Value

bool

at line 72
bool usesPipelineRead()

Determine whether the response is read incrementally.

Return Value

bool