public function RequestStack::push in Service Container 7
Same name and namespace in other branches
- 7.2 lib/Symfony/Component/HttpFoundation/RequestStack.php \Symfony\Component\HttpFoundation\RequestStack::push()
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.
File
- lib/
Symfony/ Component/ HttpFoundation/ RequestStack.php, line 32
Class
- RequestStack
- Request stack that controls the lifecycle of requests.
Namespace
Symfony\Component\HttpFoundationCode
public function push(Request $request) {
$this->requests[] = $request;
}