Application\Web: use same request everywhere

This commit is contained in:
Thomas Gelf 2014-06-22 14:13:00 +02:00
parent dfe2448921
commit 7d6fd45466

View File

@ -178,7 +178,7 @@ class Web extends ApplicationBootstrap
*/ */
public function dispatch() public function dispatch()
{ {
$this->frontController->dispatch(new Request(), new Response()); $this->frontController->dispatch($this->request, new Response());
} }
/** /**