diff --git a/core/lib/Drupal/Core/Controller/ControllerBase.php b/core/lib/Drupal/Core/Controller/ControllerBase.php index 035f5b2..44ac5fc 100644 --- a/core/lib/Drupal/Core/Controller/ControllerBase.php +++ b/core/lib/Drupal/Core/Controller/ControllerBase.php @@ -124,8 +124,8 @@ protected function urlGenerator() { /** * Renders a link to a route given a route name and its parameters. * - * @see \Drupal\Core\Utility\LinkGenerator::generate() for details on - * the arguments and usage, and possible exceptions. + * @see \Drupal\Core\Utility\LinkGeneratorInterface::generate() for details + * on the arguments, usage, and possible exceptions. * * @return string * An HTML string containing a link to the given route and parameters. @@ -197,8 +197,8 @@ public function redirect($route_name, array $route_parameters = array(), $status /** * Generates a URL or path for a specific route based on the given parameters. * - * @see \Drupal\Core\Routing\UrlGenerator::generateFromRoute() for details on - * the arguments and usage, and possible exceptions. + * @see \Drupal\Core\Routing\UrlGeneratorInterface::generateFromRoute() for + * details on the arguments, usage, and possible exceptions. * * @return string * The generated URL for the given route. diff --git a/core/lib/Drupal/Core/Form/FormBase.php b/core/lib/Drupal/Core/Form/FormBase.php index c3fbe39..a9bdede 100644 --- a/core/lib/Drupal/Core/Form/FormBase.php +++ b/core/lib/Drupal/Core/Form/FormBase.php @@ -65,8 +65,8 @@ protected function t($string, array $args = array(), array $options = array()) { /** * Generates a URL or path for a specific route based on the given parameters. * - * @see \Drupal\Core\Routing\UrlGenerator::generateFromRoute() for details on - * the arguments and usage, and possible exceptions. + * @see \Drupal\Core\Routing\UrlGeneratorInterface::generateFromRoute() for + * details on the arguments, usage, and possible exceptions. * * @return string * The generated URL for the given route.