diff --git a/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php b/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php index 714f9a8..db2069d 100644 --- a/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php +++ b/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php @@ -35,7 +35,8 @@ public function generateFromPath($path = NULL, $options = array()); * @param string $name * The route name. * @param array $parameters - * An array of parameters as passed to Symfony\Component\Routing\Generator\UrlGeneratorInterface::generate(). + * An array of parameters as passed to + * \Symfony\Component\Routing\Generator\UrlGeneratorInterface::generate(). * * @return string * The internal Drupal path corresponding to the route. diff --git a/core/lib/Drupal/Core/Routing/UrlGenerator.php b/core/lib/Drupal/Core/Routing/UrlGenerator.php index cdb0386..92b843d 100644 --- a/core/lib/Drupal/Core/Routing/UrlGenerator.php +++ b/core/lib/Drupal/Core/Routing/UrlGenerator.php @@ -144,7 +144,7 @@ public function getPathFromRoute($name, $parameters = array()) { } /** - * Implements Symfony\Component\Routing\Generator\UrlGeneratorInterface::generate(). + * {@inheritdoc} */ public function generate($name, $parameters = array(), $absolute = FALSE) { $path = '/' . $this->getPathFromRoute($name, $parameters);