\Symfony\Component\HttpFoundationRequestStack

Request stack that controls the lifecycle of requests.

Summary

Methods
Properties
Constants
push()
pop()
getCurrentRequest()
getMasterRequest()
getParentRequest()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
$requests
N/A

Properties

Methods

push()

push(\Symfony\Component\HttpFoundation\Request  $request) 

Pushes a Request on the stack.

This method should generally not be called directly as the stack management should be taken care of by the application itself.

Parameters

\Symfony\Component\HttpFoundation\Request $request

pop()

pop() : \Symfony\Component\HttpFoundation\Request|null

Pops the current request from the stack.

This operation lets the current request go out of scope.

This method should generally not be called directly as the stack management should be taken care of by the application itself.

Returns

\Symfony\Component\HttpFoundation\Request|null

getMasterRequest()

getMasterRequest() : \Symfony\Component\HttpFoundation\Request|null

Gets the master Request.

Be warned that making your code aware of the master request might make it un-compatible with other features of your framework like ESI support.

Returns

\Symfony\Component\HttpFoundation\Request|null

getParentRequest()

getParentRequest() : \Symfony\Component\HttpFoundation\Request|null

Returns the parent request of the current.

Be warned that making your code aware of the parent request might make it un-compatible with other features of your framework like ESI support.

If current Request is the master request, it returns null.

Returns

\Symfony\Component\HttpFoundation\Request|null