$requests
$requests : \Symfony\Component\HttpFoundation\Request[]
Request stack that controls the lifecycle of requests.
$requests : \Symfony\Component\HttpFoundation\Request[]
push(\Symfony\Component\HttpFoundation\Request $request) : mixed
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.
\Symfony\Component\HttpFoundation\Request | $request |
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.
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 main request, it returns null.
None found |
getSession() : \Symfony\Component\HttpFoundation\Session\SessionInterface
Gets the current session.
None found |