Issue #2078967 by pwolanin: Fix formatting to 80 columns for @throws in UrlGeneratorInterface::generateFromRoute().

8.0.x
webchick 2013-09-02 13:27:29 -07:00
parent 91d8b13c6f
commit 9436f98c14
1 changed files with 7 additions and 4 deletions

View File

@ -131,10 +131,13 @@ interface UrlGeneratorInterface extends VersatileGeneratorInterface {
* @return string * @return string
* The generated URL for the given route. * The generated URL for the given route.
* *
* @throws RouteNotFoundException If the named route doesn't exist * @throws \Symfony\Component\Routing\Exception\RouteNotFoundException
* @throws MissingMandatoryParametersException When some parameters are missing that are mandatory for the route * Thrown when the named route doesn't exist.
* @throws InvalidParameterException When a parameter value for a placeholder is not correct because * @throws \Symfony\Component\Routing\Exception\MissingMandatoryParametersException
* it does not match the requirement * Thrown when some parameters are missing that are mandatory for the route.
* @throws \Symfony\Component\Routing\Exception\InvalidParameterException
* Thrown when a parameter value for a placeholder is not correct because it
* does not match the requirement.
*/ */
public function generateFromRoute($name, $parameters = array(), $options = array()); public function generateFromRoute($name, $parameters = array(), $options = array());