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
1 changed files with 1 additions and 1 deletions

View File

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