From 9436f98c142a9358320b96fdd7eac1e987c81e6c Mon Sep 17 00:00:00 2001 From: webchick Date: Mon, 2 Sep 2013 13:27:29 -0700 Subject: [PATCH] Issue #2078967 by pwolanin: Fix formatting to 80 columns for @throws in UrlGeneratorInterface::generateFromRoute(). --- .../lib/Drupal/Core/Routing/UrlGeneratorInterface.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php b/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php index 62fe1efe006..a2ce7d122aa 100644 --- a/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php +++ b/core/lib/Drupal/Core/Routing/UrlGeneratorInterface.php @@ -131,10 +131,13 @@ interface UrlGeneratorInterface extends VersatileGeneratorInterface { * @return string * The generated URL for the given route. * - * @throws RouteNotFoundException If the named route doesn't exist - * @throws MissingMandatoryParametersException When some parameters are missing that are mandatory for the route - * @throws InvalidParameterException When a parameter value for a placeholder is not correct because - * it does not match the requirement + * @throws \Symfony\Component\Routing\Exception\RouteNotFoundException + * Thrown when the named route doesn't exist. + * @throws \Symfony\Component\Routing\Exception\MissingMandatoryParametersException + * 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());