[FrameworkBundle] added a protected shortcut getParameter() method in the base Controller class.

This commit is contained in:
Hugo Hamon 2015-03-25 11:05:20 +01:00
parent 6ef12044f7
commit 5d96f4dbd7

View File

@ -334,7 +334,7 @@ class Controller extends ContainerAware
}
/**
* Gets a service by id.
* Gets a container service by its id.
*
* @param string $id The service id
*
@ -349,6 +349,18 @@ class Controller extends ContainerAware
return $this->container->get($id);
}
/**
* Gets a container configuration parameter by its name.
*
* @param string $name The parameter name
*
* @return mixed
*/
protected function getParameter($name)
{
return $this->container->getParameter($name);
}
/**
* Checks the validity of a CSRF token
*