lib: Introduce Web::getRequest()

Basic auth will need the request before we set up the front controller.

refs #9660
This commit is contained in:
Eric Lippmann 2015-07-29 16:27:48 +02:00
parent c3a057dbdb
commit db48a944e3
1 changed files with 10 additions and 0 deletions

View File

@ -136,6 +136,16 @@ class Web extends ApplicationBootstrap
return $this->frontController;
}
/**
* Get the request
*
* @return Request
*/
public function getRequest()
{
return $this->request;
}
/**
* Getter for view
*