trait ResponseTrait (View source)

Methods

int
status()

Get the status code for the response.

string
content()

Get the content of the response.

$this
header( string $key, string $value, bool $replace = true)

Set a header on the Response.

$this
withHeaders( array $headers)

Add an array of headers to the response.

$this
cookie( Cookie|mixed $cookie)

Add a cookie to the response.

$this
withCookie( Cookie|mixed $cookie)

Add a cookie to the response.

Details

at line line 12
int status()

Get the status code for the response.

Return Value

int

at line line 22
string content()

Get the content of the response.

Return Value

string

at line line 35
$this header( string $key, string $value, bool $replace = true)

Set a header on the Response.

Parameters

string $key
string $value
bool $replace

Return Value

$this

at line line 48
$this withHeaders( array $headers)

Add an array of headers to the response.

Parameters

array $headers

Return Value

$this

Add a cookie to the response.

Parameters

Cookie|mixed $cookie

Return Value

$this

at line line 74
$this withCookie( Cookie|mixed $cookie)

Add a cookie to the response.

Parameters

Cookie|mixed $cookie

Return Value

$this