IRequest
extends
IMessage, IRequest
in
Tags
Table of Contents
Methods
- getBody() : string|null
- Gets the body of the message. String if it has been set / initialized, null otherwise.
- getParameter() : mixed
- Gets the value of a parameter that was sent in this request
- getParameters() : array<string|int, mixed>
- setBody() : mixed
- Sets the body of the message.
Methods
getBody()
Gets the body of the message. String if it has been set / initialized, null otherwise.
public
getBody() : string|null
Return values
string|nullgetParameter()
Gets the value of a parameter that was sent in this request
public
getParameter(string $paramater) : mixed
Parameters
- $paramater : string
getParameters()
public
getParameters() : array<string|int, mixed>
Return values
array<string|int, mixed>setBody()
Sets the body of the message.
public
setBody(string $body) : mixed
Parameters
- $body : string