Symfony: accessing the request
The commonly used
$this->getRequestParameter('blah')
is a shortened version of
$this->getRequest()->getRequestParameter('blah')
All sorts of other goodies are available using $this->getRequest(), including for example:
$this->getRequest()->getPathInfo()