Issue #2078967 by pwolanin: Fix formatting to 80 columns for @throws in UrlGeneratorInterface::generateFromRoute().
parent
91d8b13c6f
commit
9436f98c14
|
@ -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());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue