From d262018e7ce0e267116a1974de9e6f22549e24b3 Mon Sep 17 00:00:00 2001 From: Nathaniel Catchpole <catch@35733.no-reply.drupal.org> Date: Mon, 29 Aug 2016 08:44:55 +0100 Subject: [PATCH] Issue #2777451 by markdorison, er.pushpinderrana, alexpott: @see references not forming links in documentation --- core/core.api.php | 2 +- core/includes/update.inc | 2 +- core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php | 2 +- core/lib/Drupal/Core/Utility/ProjectInfo.php | 2 +- core/modules/simpletest/simpletest.api.php | 2 +- core/modules/update/update.api.php | 2 +- core/modules/user/user.api.php | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/core/core.api.php b/core/core.api.php index 6a34823abdb1..7b90ae21f7bb 100644 --- a/core/core.api.php +++ b/core/core.api.php @@ -2047,7 +2047,7 @@ function hook_mail_alter(&$message) { * An array of parameters supplied by the caller of * MailManagerInterface->mail(). * - * @see \Drupal\Core\Mail\MailManagerInterface->mail() + * @see \Drupal\Core\Mail\MailManagerInterface::mail() */ function hook_mail($key, &$message, $params) { $account = $params['account']; diff --git a/core/includes/update.inc b/core/includes/update.inc index 213d15d2fef9..a9b5de92320d 100644 --- a/core/includes/update.inc +++ b/core/includes/update.inc @@ -596,7 +596,7 @@ function update_already_performed($module, $number) { * An array of return values obtained by merging the results of the * hook_update_dependencies() implementations in all installed modules. * - * @see \Drupal::moduleHandler()->invokeAll() + * @see \Drupal\Core\Extension\ModuleHandlerInterface::invokeAll() * @see hook_update_dependencies() */ function update_retrieve_dependencies() { diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php index c0775c914aff..72f35da8db61 100644 --- a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php +++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php @@ -23,7 +23,7 @@ class Schema extends DatabaseSchema { * This is collected by DatabaseConnection_pgsql->queryTableInformation(), * by introspecting the database. * - * @see DatabaseConnection_pgsql->queryTableInformation() + * @see \Drupal\Core\Database\Driver\pgsql\Schema::queryTableInformation() * @var array */ protected $tableInformation = array(); diff --git a/core/lib/Drupal/Core/Utility/ProjectInfo.php b/core/lib/Drupal/Core/Utility/ProjectInfo.php index 1eed1fe9ace7..24043d3b438d 100644 --- a/core/lib/Drupal/Core/Utility/ProjectInfo.php +++ b/core/lib/Drupal/Core/Utility/ProjectInfo.php @@ -172,7 +172,7 @@ function getProjectName(Extension $file) { * @return * Array of .info.yml file data we need for the update manager. * - * @see \Drupal\Core\Utility\ProjectInfo->processInfoList() + * @see \Drupal\Core\Utility\ProjectInfo::processInfoList() */ function filterProjectInfo($info, $additional_whitelist = array()) { $whitelist = array( diff --git a/core/modules/simpletest/simpletest.api.php b/core/modules/simpletest/simpletest.api.php index e5251b78bc9f..d1b5f442c779 100644 --- a/core/modules/simpletest/simpletest.api.php +++ b/core/modules/simpletest/simpletest.api.php @@ -50,7 +50,7 @@ function hook_test_group_finished() { * $results The results of the test as gathered by * \Drupal\simpletest\WebTestBase. * - * @see \Drupal\simpletest\WebTestBase->results() + * @see \Drupal\simpletest\WebTestBase::results() */ function hook_test_finished($results) { } diff --git a/core/modules/update/update.api.php b/core/modules/update/update.api.php index 362c1a228312..37ef66a47439 100644 --- a/core/modules/update/update.api.php +++ b/core/modules/update/update.api.php @@ -32,7 +32,7 @@ * examples of how to populate the array with real values. * * @see \Drupal\Update\UpdateManager::getProjects() - * @see \Drupal\Core\Utility\ProjectInfo->processInfoList() + * @see \Drupal\Core\Utility\ProjectInfo::processInfoList() */ function hook_update_projects_alter(&$projects) { // Hide a site-specific module from the list. diff --git a/core/modules/user/user.api.php b/core/modules/user/user.api.php index 6700727ee7ea..d4a093e36221 100644 --- a/core/modules/user/user.api.php +++ b/core/modules/user/user.api.php @@ -115,7 +115,7 @@ function hook_user_cancel_methods_alter(&$methods) { * @param $account * The account object the name belongs to. * - * @see \Drupal\Core\Session\AccountInterface->getDisplayName() + * @see \Drupal\Core\Session\AccountInterface::getDisplayName() */ function hook_user_format_name_alter(&$name, $account) { // Display the user's uid instead of name. -- GitLab