diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc index 32f47fa1d8e5e2307656cbf3a89a2b781ae879c1..4a6f3de6a96c7b82b3bc8dd9b51382fdfc0e4c7f 100644 --- a/core/includes/bootstrap.inc +++ b/core/includes/bootstrap.inc @@ -2277,7 +2277,7 @@ function _drupal_load_test_overrides($test_prefix) { global $conf, $config_directories; // Do not use the parent site's config directories. Use only the child site's. - // @see Drupal\simpletest\TestBase::prepareConfigDirectories() + // @see \Drupal\simpletest\TestBase::prepareConfigDirectories() $path_prefix = 'simpletest/' . substr($test_prefix, 10); $config_directories = array(); foreach (array(CONFIG_ACTIVE_DIRECTORY, CONFIG_STAGING_DIRECTORY) as $type) { @@ -2353,7 +2353,7 @@ function drupal_language_initialize() { /** * Returns the language object for a given language type. * - * @see Drupal\Core\Language\LanguageManager + * @see \Drupal\Core\Language\LanguageManager * * @param string $type * The type of language object needed, e.g. Language::TYPE_INTERFACE. @@ -2561,7 +2561,7 @@ function language_is_locked($langcode) { /** * Returns the default language used on the site. * - * @return Drupal\Core\Language\Language + * @return \Drupal\Core\Language\Language * A language object. */ function language_default() { @@ -3086,7 +3086,7 @@ function drupal_check_memory_limit($required, $memory_limit = NULL) { * @deprecated Use \Drupal::lock() instead, or even better have the lock service * injected into your object. * - * @return Drupal\Core\Lock\LockBackendInterface + * @return \Drupal\Core\Lock\LockBackendInterface */ function lock() { return \Drupal::lock(); diff --git a/core/includes/cache.inc b/core/includes/cache.inc index d7dca8e310243ed28add7cc6a099712dbfee793a..b39b7ff04f6e0af8f134a0275460a385d14d0858 100644 --- a/core/includes/cache.inc +++ b/core/includes/cache.inc @@ -20,10 +20,10 @@ * The cache bin for which the cache object should be returned, defaults to * 'cache'. * - * @return Drupal\Core\Cache\CacheBackendInterface + * @return \Drupal\Core\Cache\CacheBackendInterface * The cache object associated with the specified bin. * - * @see Drupal\Core\Cache\CacheBackendInterface + * @see \Drupal\Core\Cache\CacheBackendInterface */ function cache($bin = 'cache') { return \Drupal::cache($bin); diff --git a/core/includes/common.inc b/core/includes/common.inc index 2048ab4787b2087c8b54d5f92f2c5cc2dec72a77..6b4865dcc7d21ad3f85691cdeaae45c66dffeadb 100644 --- a/core/includes/common.inc +++ b/core/includes/common.inc @@ -297,7 +297,7 @@ function drupal_get_profile() { * @deprecated This will be removed in 8.0. Instead, register a new breadcrumb * builder service. * - * @see Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface + * @see \Drupal\Core\Breadcrumb\BreadcrumbBuilderInterface */ function drupal_set_breadcrumb($breadcrumb = NULL) { $stored_breadcrumb = &drupal_static(__FUNCTION__); @@ -3135,8 +3135,8 @@ function _drupal_bootstrap_code() { * * DrupalKernel skips this and replicates it via event listeners. * - * @see Drupal\Core\EventSubscriber\PathSubscriber; - * @see Drupal\Core\EventSubscriber\LegacyRequestSubscriber; + * @see \Drupal\Core\EventSubscriber\PathSubscriber; + * @see \Drupal\Core\EventSubscriber\LegacyRequestSubscriber; */ function _drupal_bootstrap_full($skip = FALSE) { static $called = FALSE; @@ -4949,7 +4949,7 @@ function archiver_get_archiver($file) { * @return array * The Drupal Updater class registry. * - * @see Drupal\Core\Updater\Updater + * @see \Drupal\Core\Updater\Updater * @see hook_updater_info() * @see hook_updater_info_alter() */ @@ -4969,7 +4969,7 @@ function drupal_get_updaters() { * @return * The Drupal FileTransfer class registry. * - * @see Drupal\Core\FileTransfer\FileTransfer + * @see \Drupal\Core\FileTransfer\FileTransfer * @see hook_filetransfer_info() * @see hook_filetransfer_info_alter() */ diff --git a/core/includes/config.inc b/core/includes/config.inc index fa804acdbe72a4529127bb82a6d7b60bce4e83f8..2857c686dc9e482847abba1cdc7e62ce4ae2342d 100644 --- a/core/includes/config.inc +++ b/core/includes/config.inc @@ -102,7 +102,7 @@ function config_uninstall_default_config($type, $name) { /** * Gets configuration object names starting with a given prefix. * - * @see Drupal\Core\Config\StorageInterface::listAll() + * @see \Drupal\Core\Config\StorageInterface::listAll() */ function config_get_storage_names_with_prefix($prefix = '') { return drupal_container()->get('config.storage')->listAll($prefix); @@ -123,7 +123,7 @@ function config_get_storage_names_with_prefix($prefix = '') { * config object returned will contain the contents of book.admin * configuration file. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * A configuration object. */ function config($name) { @@ -219,9 +219,9 @@ function config_get_entity_type_by_name($name) { * * Use the typed data manager service for creating typed configuration objects. * - * @see Drupal\Core\TypedData\TypedDataManager::create() + * @see \Drupal\Core\TypedData\TypedDataManager::create() * - * @return Drupal\Core\TypedData\TypedConfigManager + * @return \Drupal\Core\TypedData\TypedConfigManager */ function config_typed() { return drupal_container()->get('config.typed'); @@ -230,9 +230,9 @@ function config_typed() { /** * Creates a configuration snapshot following a successful import. * - * @param Drupal\Core\Config\StorageInterface $source_storage + * @param \Drupal\Core\Config\StorageInterface $source_storage * The storage to synchronize configuration from. - * @param Drupal\Core\Config\StorageInterface $snapshot_storage + * @param \Drupal\Core\Config\StorageInterface $snapshot_storage * The storage to synchronize configuration to. */ function config_import_create_snapshot(StorageInterface $source_storage, StorageInterface $snapshot_storage) { @@ -245,9 +245,9 @@ function config_import_create_snapshot(StorageInterface $source_storage, Storage /** * Return a formatted diff of a named config between two storages. * - * @param Drupal\Core\Config\StorageInterface $source_storage + * @param \Drupal\Core\Config\StorageInterface $source_storage * The storage to diff configuration from. - * @param Drupal\Core\Config\StorageInterface $target_storage + * @param \Drupal\Core\Config\StorageInterface $target_storage * The storage to diff configuration to. * @param string $name * The name of the configuration object to diff. diff --git a/core/includes/entity.inc b/core/includes/entity.inc index 199263b9f9c55172cbf3c7aaff40d6dc1d7b2e85..a22181929017b7f1562e79e53b7fab9bcd24d7d5 100644 --- a/core/includes/entity.inc +++ b/core/includes/entity.inc @@ -192,7 +192,7 @@ function entity_get_view_modes($entity_type = NULL) { * @param bool $reset * Whether to reset the internal cache for the requested entity type. * - * @return Drupal\Core\Entity\EntityInterface + * @return \Drupal\Core\Entity\EntityInterface * The entity object, or NULL if there is no entity with the given id. * * @see \Drupal\Core\Entity\EntityManager @@ -216,7 +216,7 @@ function entity_load($entity_type, $id, $reset = FALSE) { * @param int $revision_id * The id of the entity to load. * - * @return Drupal\Core\Entity\EntityInterface + * @return \Drupal\Core\Entity\EntityInterface * The entity object, or FALSE if there is no entity with the given revision * id. * @@ -259,7 +259,7 @@ function entity_revision_delete($entity_type, $revision_id) { * @return EntityInterface|FALSE * The entity object, or FALSE if there is no entity with the given UUID. * - * @throws Drupal\Core\Entity\EntityStorageException + * @throws \Drupal\Core\Entity\EntityStorageException * Thrown in case the requested entity type does not support UUIDs. * * @see \Drupal\Core\Entity\EntityManager @@ -383,7 +383,7 @@ function entity_delete_multiple($entity_type, array $ids) { * An array of values to set, keyed by property name. If the entity type has * bundles the bundle key has to be specified. * - * @return Drupal\Core\Entity\EntityInterface + * @return \Drupal\Core\Entity\EntityInterface * A new entity object. */ function entity_create($entity_type, array $values) { @@ -395,7 +395,7 @@ function entity_create($entity_type, array $values) { /** * Gets the entity controller class for an entity type. * - * @return Drupal\Core\Entity\EntityStorageControllerInterface + * @return \Drupal\Core\Entity\EntityStorageControllerInterface * * @deprecated Use \Drupal\Core\Entity\EntityManager::getStorageController(). */ @@ -410,7 +410,7 @@ function entity_get_controller($entity_type) { * This is a wrapper for Drupal\Core\Entity\EntityInterface::label(). This function * should only be used as a callback, e.g. for menu title callbacks. * - * @param Drupal\Core\Entity\EntityInterface $entity + * @param \Drupal\Core\Entity\EntityInterface $entity * The entity for which to generate the label. * @param $langcode * (optional) The language code of the language that should be used for @@ -420,7 +420,7 @@ function entity_get_controller($entity_type) { * @return * The label of the entity, or NULL if there is no label defined. * - * @see Drupal\Core\Entity\EntityInterface::label() + * @see \Drupal\Core\Entity\EntityInterface::label() */ function entity_page_label(EntityInterface $entity, $langcode = NULL) { return $entity->label($langcode); @@ -460,7 +460,7 @@ function entity_access_controller($entity_type) { * identifying the controlled form. Defaults to 'default' which is the usual * create/edit form. * - * @return Drupal\Core\Entity\EntityFormControllerInterface + * @return \Drupal\Core\Entity\EntityFormControllerInterface * An entity form controller instance. * * @deprecated Use \Drupal\Core\Entity\EntityManager::getFormController(). @@ -541,7 +541,7 @@ function entity_get_form(EntityInterface $entity, $operation = 'default', array * @param string $entity_type * The type of the entity. * - * @return Drupal\Core\Entity\EntityListControllerInterface + * @return \Drupal\Core\Entity\EntityListControllerInterface * An entity list controller. * * @deprecated Use \Drupal\Core\Entity\EntityManager::getFormController(). @@ -557,7 +557,7 @@ function entity_list_controller($entity_type) { * @param string $entity_type * The type of the entity. * - * @return Drupal\Core\Entity\EntityRenderControllerInterface + * @return \Drupal\Core\Entity\EntityRenderControllerInterface * An entity render controller. * * @deprecated Use \Drupal\Core\Entity\EntityManager::getFormController(). @@ -570,7 +570,7 @@ function entity_render_controller($entity_type) { /** * Returns the render array for an entity. * - * @param Drupal\Core\Entity\EntityInterface $entity + * @param \Drupal\Core\Entity\EntityInterface $entity * The entity to be rendered. * @param string $view_mode * The view mode that should be used to display the entity. diff --git a/core/includes/file.inc b/core/includes/file.inc index bb537fb19d02bd91f0d0ec7a2f8cb74d063deb59..788f213018244f384264c46c10790880bbfbc890 100644 --- a/core/includes/file.inc +++ b/core/includes/file.inc @@ -1350,7 +1350,7 @@ function drupal_unlink($uri, $context = NULL) { * @return string|false * The absolute local filepath (with no symbolic links), or FALSE on failure. * - * @see Drupal\Core\StreamWrapper\StreamWrapperInterface::realpath() + * @see \Drupal\Core\StreamWrapper\StreamWrapperInterface::realpath() * @see http://php.net/manual/function.realpath.php * @ingroup php_wrappers */ diff --git a/core/includes/install.core.inc b/core/includes/install.core.inc index 4c3c3403856fe0c63512ebad88e7332f0266ba3c..ebbcb1bc5b24b571b2ef18dcfb6da309332fb780 100644 --- a/core/includes/install.core.inc +++ b/core/includes/install.core.inc @@ -1467,7 +1467,7 @@ function install_find_translations() { /** * Build a file translation service for installation. * - * @return Drupal\Core\StringTranslation\Translator\FileTranslation + * @return \Drupal\Core\StringTranslation\Translator\FileTranslation * File translation service for the installer. */ function install_file_translation_service() { diff --git a/core/includes/mail.inc b/core/includes/mail.inc index 75b80c656ead4a64c5a0833aa9215ecc77bdca5f..cb5af1a1c6ccc9ad2ef8b9573901917a6e204112 100644 --- a/core/includes/mail.inc +++ b/core/includes/mail.inc @@ -206,7 +206,7 @@ function drupal_mail($module, $key, $to, $langcode, $params = array(), $from = N * A key to identify the e-mail sent. The final e-mail ID for the e-mail * alter hook in drupal_mail() would have been {$module}_{$key}. * - * @return Drupal\Core\Mail\MailInterface + * @return \Drupal\Core\Mail\MailInterface * An object that implements Drupal\Core\Mail\MailInterface. * * @throws \Exception diff --git a/core/includes/module.inc b/core/includes/module.inc index f6199bf1e574c762eb9e2830721bdf584c066384..247aaaca165489f38e1b2587eaf8052f405d304a 100644 --- a/core/includes/module.inc +++ b/core/includes/module.inc @@ -321,7 +321,7 @@ function module_set_weight($module, $weight) { ->save(); // Prepare the new module list, sorted by weight, including filenames. - // @see Drupal\Core\Extension\ModuleHandler::install() + // @see \Drupal\Core\Extension\ModuleHandler::install() $module_handler = \Drupal::moduleHandler(); $current_module_filenames = $module_handler->getModuleList(); $current_modules = array_fill_keys(array_keys($current_module_filenames), 0); diff --git a/core/includes/update.inc b/core/includes/update.inc index 79090551163e907afd6bd4926812f99c382bd856..0ae9b99d3c3861d5a5be1813c815026865da5c31 100644 --- a/core/includes/update.inc +++ b/core/includes/update.inc @@ -1054,7 +1054,7 @@ function update_get_update_list() { * - 'module': The name of the module that this update function belongs to. * - 'number': The number of this update function within that module. * - * @see Drupal\Component\Graph\Graph::searchAndSort() + * @see \Drupal\Component\Graph\Graph::searchAndSort() */ function update_resolve_dependencies($starting_updates) { // Obtain a dependency graph for the requested update functions. @@ -1170,7 +1170,7 @@ function update_get_update_function_list($starting_updates) { * - 'module': The name of the module that this update function belongs to. * - 'number': The number of this update function within that module. * - * @see Drupal\Component\Graph\Graph::searchAndSort() + * @see \Drupal\Component\Graph\Graph::searchAndSort() * @see update_resolve_dependencies() */ function update_build_dependency_graph($update_functions) { diff --git a/core/lib/Drupal/Component/Archiver/ArchiverInterface.php b/core/lib/Drupal/Component/Archiver/ArchiverInterface.php index 96d99928aafcb0bcd69e62bf01ae28df3babe210..1aa363ab2af6d2c2620e5c88f3da4328ee41befd 100644 --- a/core/lib/Drupal/Component/Archiver/ArchiverInterface.php +++ b/core/lib/Drupal/Component/Archiver/ArchiverInterface.php @@ -19,7 +19,7 @@ interface ArchiverInterface { * The full system path of the file or directory to add. Only local files * and directories are supported. * - * @return Drupal\Component\Archiver\ArchiverInterface + * @return \Drupal\Component\Archiver\ArchiverInterface * The called object. */ public function add($file_path); @@ -30,7 +30,7 @@ public function add($file_path); * @param string $path * The file name relative to the root of the archive to remove. * - * @return Drupal\Component\Archiver\ArchiverInterface + * @return \Drupal\Component\Archiver\ArchiverInterface * The called object. */ public function remove($path); @@ -45,7 +45,7 @@ public function remove($path); * relative to the root of the archive. If not specified, all files * in the archive will be extracted. * - * @return Drupal\Component\Archiver\ArchiverInterface + * @return \Drupal\Component\Archiver\ArchiverInterface * The called object. */ public function extract($path, array $files = array()); diff --git a/core/lib/Drupal/Component/Archiver/Tar.php b/core/lib/Drupal/Component/Archiver/Tar.php index f06f3e07af6d6067d7efd7a768d0f042c252f152..b1c00591afc142a24eb4901b7a36986e881d7b7b 100644 --- a/core/lib/Drupal/Component/Archiver/Tar.php +++ b/core/lib/Drupal/Component/Archiver/Tar.php @@ -15,7 +15,7 @@ class Tar implements ArchiverInterface { /** * The underlying ArchiveTar instance that does the heavy lifting. * - * @var Drupal\Component\Archiver\ArchiveTar + * @var \Drupal\Component\Archiver\ArchiveTar */ protected $tar; @@ -27,7 +27,7 @@ class Tar implements ArchiverInterface { * are supported. If the file does not yet exist, it will be created if * appropriate. * - * @throws Drupal\Component\Archiver\ArchiverException + * @throws \Drupal\Component\Archiver\ArchiverException */ public function __construct($file_path) { $this->tar = new ArchiveTar($file_path); diff --git a/core/lib/Drupal/Component/Archiver/Zip.php b/core/lib/Drupal/Component/Archiver/Zip.php index 6cc118273aa7c50eba8b5e126a7bcd92ed26d1f4..67ea76d5e99750831a150ce995b1ed214a22c2c9 100644 --- a/core/lib/Drupal/Component/Archiver/Zip.php +++ b/core/lib/Drupal/Component/Archiver/Zip.php @@ -29,7 +29,7 @@ class Zip implements ArchiverInterface { * are supported. If the file does not yet exist, it will be created if * appropriate. * - * @throws Drupal\Component\Archiver\ArchiverException + * @throws \Drupal\Component\Archiver\ArchiverException */ public function __construct($file_path) { $this->zip = new \ZipArchive(); diff --git a/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php b/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php index 18ae1fc11d990570fbe999bcc4daef3bb8cd1cb8..fe22e5f3ee35bec9b1ec7dc15d27714b76461b5e 100644 --- a/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php +++ b/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php @@ -12,8 +12,8 @@ /** * Methods required for both reader and writer implementations. * - * @see Drupal\Component\Gettext\PoReaderInterface - * @see Drupal\Component\Gettext\PoWriterInterface + * @see \Drupal\Component\Gettext\PoReaderInterface + * @see \Drupal\Component\Gettext\PoWriterInterface */ interface PoMetadataInterface { @@ -36,7 +36,7 @@ public function getLangcode(); /** * Set header metadata. * - * @param Drupal\Component\Gettext\PoHeader $header + * @param \Drupal\Component\Gettext\PoHeader $header * Header object representing metadata in a PO header. */ public function setHeader(PoHeader $header); @@ -44,7 +44,7 @@ public function setHeader(PoHeader $header); /** * Get header metadata. * - * @return Drupal\Component\Gettext\PoHeader $header + * @return \Drupal\Component\Gettext\PoHeader $header * Header instance representing metadata in a PO header. */ public function getHeader(); diff --git a/core/lib/Drupal/Component/Gettext/PoReaderInterface.php b/core/lib/Drupal/Component/Gettext/PoReaderInterface.php index 5e45e4adc6ddaa66afaaf64cadb7b4c4fa445464..71358189ea01b3f42919bccb49fec303ba6c124e 100644 --- a/core/lib/Drupal/Component/Gettext/PoReaderInterface.php +++ b/core/lib/Drupal/Component/Gettext/PoReaderInterface.php @@ -17,7 +17,7 @@ interface PoReaderInterface extends PoMetadataInterface { /** * Reads and returns a PoItem (source/translation pair). * - * @return Drupal\Component\Gettext\PoItem + * @return \Drupal\Component\Gettext\PoItem * Wrapper for item data instance. */ public function readItem(); diff --git a/core/lib/Drupal/Component/Gettext/PoStreamReader.php b/core/lib/Drupal/Component/Gettext/PoStreamReader.php index 61c608389f02860855c2559716b42f80da50ae3c..cc80c1a354d4f1f83889fb0fc79494c1a8dd6f86 100644 --- a/core/lib/Drupal/Component/Gettext/PoStreamReader.php +++ b/core/lib/Drupal/Component/Gettext/PoStreamReader.php @@ -87,14 +87,14 @@ class PoStreamReader implements PoStreamInterface, PoReaderInterface { /** * The PO stream header. * - * @var Drupal\Component\Gettext\PoHeader + * @var \Drupal\Component\Gettext\PoHeader */ private $_header; /** * Object wrapper for the last read source/translation pair. * - * @var Drupal\Component\Gettext\PoItem + * @var \Drupal\Component\Gettext\PoItem */ private $_last_item; diff --git a/core/lib/Drupal/Component/Gettext/PoStreamWriter.php b/core/lib/Drupal/Component/Gettext/PoStreamWriter.php index d066307d83f7d23d80d492c6561d8bb9e3127e4c..84076ff87591c0bd24197373841a27c89caae5c6 100644 --- a/core/lib/Drupal/Component/Gettext/PoStreamWriter.php +++ b/core/lib/Drupal/Component/Gettext/PoStreamWriter.php @@ -28,7 +28,7 @@ class PoStreamWriter implements PoWriterInterface, PoStreamInterface { /** * The Gettext PO header. * - * @var Drupal\Component\Gettext\PoHeader + * @var \Drupal\Component\Gettext\PoHeader */ private $_header; @@ -42,7 +42,7 @@ class PoStreamWriter implements PoWriterInterface, PoStreamInterface { /** * Get the PO header of the current stream. * - * @return Drupal\Component\Gettext\PoHeader + * @return \Drupal\Component\Gettext\PoHeader * The Gettext PO header. */ public function getHeader() { @@ -52,7 +52,7 @@ public function getHeader() { /** * Set the PO header for the current stream. * - * @param Drupal\Component\Gettext\PoHeader $header + * @param \Drupal\Component\Gettext\PoHeader $header * The Gettext PO header to set. */ public function setHeader(PoHeader $header) { diff --git a/core/lib/Drupal/Component/Graph/Graph.php b/core/lib/Drupal/Component/Graph/Graph.php index 8fc7d210c8fec1f12a120540ad883d9cd5f5c71a..726c72334f39e9fca2c49af643870e3810cd1829 100644 --- a/core/lib/Drupal/Component/Graph/Graph.php +++ b/core/lib/Drupal/Component/Graph/Graph.php @@ -101,7 +101,7 @@ public function searchAndSort() { * @param $component * The component of the last vertex. * - * @see Drupal\Component\Graph\Graph::searchAndSort() + * @see \Drupal\Component\Graph\Graph::searchAndSort() */ protected function depthFirstSearch(&$state, $start, &$component = NULL) { // Assign new component for each new vertex, i.e. when not called recursively. diff --git a/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php b/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php index 6da6940268763d6fcfb9aba31ed3f2ad42b17d2f..4e99bd98635dfbd171ee725557d5211666b5bbe2 100644 --- a/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php +++ b/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php @@ -133,7 +133,7 @@ protected function encodePluginId($base_plugin_id, $derivative_id) { * @param array $base_definition * The base plugin definition to build derivatives. * - * @return Drupal\Component\Plugin\Discovery\DerivativeInterface|null + * @return \Drupal\Component\Plugin\Discovery\DerivativeInterface|null * A DerivativeInterface or null if none exists for the plugin. */ protected function getDerivativeFetcher($base_plugin_id, array $base_definition) { diff --git a/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php b/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php index d049814a8918575a380cf4c4e0e6b4a3f1f05700..40cb49b8415fcdd08e0736728188d4d04bcf4f2c 100644 --- a/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php +++ b/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php @@ -26,7 +26,7 @@ class DefaultFactory implements FactoryInterface { * The plugin definition includes the plugin class and possibly other * information necessary for proper instantiation. * - * @var Drupal\Component\Plugin\Discovery\DiscoveryInterface + * @var \Drupal\Component\Plugin\Discovery\DiscoveryInterface */ protected $discovery; diff --git a/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php b/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php index f1e31049bafa76b75ba19b36020abe86463fdf90..ec82dc35e6a1f5f980be94cad426ca8523575885 100644 --- a/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php +++ b/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php @@ -25,7 +25,7 @@ * To follow this pattern, plugin managers can extend from the PluginManagerBase * class, which contains the proxying logic. * - * @see Drupal\Component\Plugin\PluginManagerBase + * @see \Drupal\Component\Plugin\PluginManagerBase */ interface PluginManagerInterface extends DiscoveryInterface, FactoryInterface, MapperInterface { } diff --git a/core/lib/Drupal/Core/Asset/CssOptimizer.php b/core/lib/Drupal/Core/Asset/CssOptimizer.php index bfc6e99e3799e3c535c7adddf8121dde486d4a41..a6a79e41d9934c39cfbd7a3ca11e0006527afbd7 100644 --- a/core/lib/Drupal/Core/Asset/CssOptimizer.php +++ b/core/lib/Drupal/Core/Asset/CssOptimizer.php @@ -127,7 +127,7 @@ public function loadFile($file, $optimize = NULL, $reset_basepath = TRUE) { * @return * The contents of the CSS file at $matches[1], with corrected paths. * - * @see Drupal\Core\Asset\AssetOptimizerInterface::loadFile() + * @see \Drupal\Core\Asset\AssetOptimizerInterface::loadFile() */ protected function loadNestedFile($matches) { $filename = $matches[1]; diff --git a/core/lib/Drupal/Core/Cache/BackendChain.php b/core/lib/Drupal/Core/Cache/BackendChain.php index 5df1a085a7ff626022b9b14a1d67a3ca7aa9fc6c..25d9b14ae788846ea5d16d3d083d72dc256aa9fd 100644 --- a/core/lib/Drupal/Core/Cache/BackendChain.php +++ b/core/lib/Drupal/Core/Cache/BackendChain.php @@ -45,7 +45,7 @@ public function __construct($bin) { * @param CacheBackendInterface $backend * The cache backend to be appended to the cache chain. * - * @return Drupal\Core\Cache\BackendChain + * @return \Drupal\Core\Cache\BackendChain * The called object. */ public function appendBackend(CacheBackendInterface $backend) { @@ -60,7 +60,7 @@ public function appendBackend(CacheBackendInterface $backend) { * @param CacheBackendInterface $backend * The backend to be prepended to the cache chain. * - * @return Drupal\Core\Cache\BackendChain + * @return \Drupal\Core\Cache\BackendChain * The called object. */ public function prependBackend(CacheBackendInterface $backend) { diff --git a/core/lib/Drupal/Core/Cache/CacheBackendInterface.php b/core/lib/Drupal/Core/Cache/CacheBackendInterface.php index a054604b10089203e49b8099403516e4135a1bd8..72c93d2f2186f6d9e88e4bd518d876858e67d6da 100644 --- a/core/lib/Drupal/Core/Cache/CacheBackendInterface.php +++ b/core/lib/Drupal/Core/Cache/CacheBackendInterface.php @@ -67,7 +67,7 @@ * item has been updated, all future requests will use the updated value. * * @see cache() - * @see Drupal\Core\Cache\DatabaseBackend + * @see \Drupal\Core\Cache\DatabaseBackend */ interface CacheBackendInterface { @@ -92,7 +92,7 @@ interface CacheBackendInterface { * @return object|false * The cache item or FALSE on failure. * - * @see Drupal\Core\Cache\CacheBackendInterface::getMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::getMultiple() */ public function get($cid, $allow_invalid = FALSE); @@ -114,7 +114,7 @@ public function get($cid, $allow_invalid = FALSE); * @return array * An array of cache item objects indexed by cache ID. * - * @see Drupal\Core\Cache\CacheBackendInterface::get() + * @see \Drupal\Core\Cache\CacheBackendInterface::get() */ public function getMultiple(&$cids, $allow_invalid = FALSE); @@ -143,8 +143,8 @@ public function getMultiple(&$cids, $allow_invalid = FALSE); * a node, both the node ID and the author's user ID might be passed in as * tags. For example array('node' => array(123), 'user' => array(92)). * - * @see Drupal\Core\Cache\CacheBackendInterface::get() - * @see Drupal\Core\Cache\CacheBackendInterface::getMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::get() + * @see \Drupal\Core\Cache\CacheBackendInterface::getMultiple() */ public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANENT, array $tags = array()); @@ -159,10 +159,10 @@ public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANEN * @param string $cid * The cache ID to delete. * - * @see Drupal\Core\Cache\CacheBackendInterface::invalidate() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteTags() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidate() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteAll() */ public function delete($cid); @@ -178,10 +178,10 @@ public function delete($cid); * @param array $cids * An array of cache IDs to delete. * - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::delete() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteTags() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::delete() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteAll() */ public function deleteMultiple(array $cids); @@ -198,21 +198,21 @@ public function deleteMultiple(array $cids); * Associative array of tags, in the same format that is passed to * CacheBackendInterface::set(). * - * @see Drupal\Core\Cache\CacheBackendInterface::set() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateTags() - * @see Drupal\Core\Cache\CacheBackendInterface::delete() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::set() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::delete() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteAll() */ public function deleteTags(array $tags); /** * Deletes all cache items in a bin. * - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateAll() - * @see Drupal\Core\Cache\CacheBackendInterface::delete() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::delete() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteTags() */ public function deleteAll(); @@ -225,10 +225,10 @@ public function deleteAll(); * @param string $cid * The cache ID to invalidate. * - * @see Drupal\Core\Cache\CacheBackendInterface::delete() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateTags() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::delete() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateAll() */ public function invalidate($cid); @@ -241,10 +241,10 @@ public function invalidate($cid); * @param string $cids * An array of cache IDs to invalidate. * - * @see Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidate() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateTags() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidate() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateAll() */ public function invalidateMultiple(array $cids); @@ -255,11 +255,11 @@ public function invalidateMultiple(array $cids); * Associative array of tags, in the same format that is passed to * CacheBackendInterface::set(). * - * @see Drupal\Core\Cache\CacheBackendInterface::set() - * @see Drupal\Core\Cache\CacheBackendInterface::deleteTags() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidate() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::set() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidate() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateAll() */ public function invalidateTags(array $tags); @@ -272,10 +272,10 @@ public function invalidateTags(array $tags); * @param string $cids * An array of cache IDs to invalidate. * - * @see Drupal\Core\Cache\CacheBackendInterface::deleteAll() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidate() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() - * @see Drupal\Core\Cache\CacheBackendInterface::invalidateTags() + * @see \Drupal\Core\Cache\CacheBackendInterface::deleteAll() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidate() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple() + * @see \Drupal\Core\Cache\CacheBackendInterface::invalidateTags() */ public function invalidateAll(); diff --git a/core/lib/Drupal/Core/Cache/DatabaseBackend.php b/core/lib/Drupal/Core/Cache/DatabaseBackend.php index a45d33833f4601f7e90d5daed183906c409c8ac6..575fd345c995088ef870bdebc9231921303823da 100644 --- a/core/lib/Drupal/Core/Cache/DatabaseBackend.php +++ b/core/lib/Drupal/Core/Cache/DatabaseBackend.php @@ -360,7 +360,7 @@ protected function flattenTags(array $tags) { * @return int * Sum of all invalidations. * - * @see Drupal\Core\Cache\DatabaseBackend::flattenTags() + * @see \Drupal\Core\Cache\DatabaseBackend::flattenTags() */ protected function checksumTags($flat_tags) { $tag_cache = &drupal_static('Drupal\Core\Cache\CacheBackendInterface::tagCache', array()); diff --git a/core/lib/Drupal/Core/Config/CachedStorage.php b/core/lib/Drupal/Core/Config/CachedStorage.php index 24b74168480242c71c39c9466ecca6622549fdba..beb8c09a1d6a9c2c94e6085033ca6333eb7bdf04 100644 --- a/core/lib/Drupal/Core/Config/CachedStorage.php +++ b/core/lib/Drupal/Core/Config/CachedStorage.php @@ -22,14 +22,14 @@ class CachedStorage implements StorageInterface, StorageCacheInterface { /** * The configuration storage to be cached. * - * @var Drupal\Core\Config\StorageInterface + * @var \Drupal\Core\Config\StorageInterface */ protected $storage; /** * The instantiated Cache backend. * - * @var Drupal\Core\Cache\CacheBackendInterface + * @var \Drupal\Core\Cache\CacheBackendInterface */ protected $cache; @@ -43,9 +43,9 @@ class CachedStorage implements StorageInterface, StorageCacheInterface { /** * Constructs a new CachedStorage controller. * - * @param Drupal\Core\Config\StorageInterface $storage + * @param \Drupal\Core\Config\StorageInterface $storage * A configuration storage controller to be cached. - * @param Drupal\Core\Cache\CacheBackendInterface $cache + * @param \Drupal\Core\Cache\CacheBackendInterface $cache * A cache backend instance to use for caching. */ public function __construct(StorageInterface $storage, CacheBackendInterface $cache) { @@ -94,7 +94,7 @@ public function readMultiple(array $names) { $list = array(); // The names array is passed by reference and will only contain the names of // config object not found after the method call. - // @see Drupal\Core\Cache\CacheBackendInterface::getMultiple() + // @see \Drupal\Core\Cache\CacheBackendInterface::getMultiple() $cached_list = $this->cache->getMultiple($names); if (!empty($names)) { diff --git a/core/lib/Drupal/Core/Config/Config.php b/core/lib/Drupal/Core/Config/Config.php index 02afbd17aca24a344cd7c452dd5f4d00efb68222..ca0cfc3160aa3d409bd7a33a794405ab47c9f4ab 100644 --- a/core/lib/Drupal/Core/Config/Config.php +++ b/core/lib/Drupal/Core/Config/Config.php @@ -59,7 +59,7 @@ class Config { /** * The storage used to load and save this configuration object. * - * @var Drupal\Core\Config\StorageInterface + * @var \Drupal\Core\Config\StorageInterface */ protected $storage; @@ -97,7 +97,7 @@ public function __construct($name, StorageInterface $storage, ContextInterface $ /** * Initializes a configuration object. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function init() { @@ -113,7 +113,7 @@ public function init() { * @param array $data * Array of loaded data for this configuration object. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function initWithData(array $data) { @@ -139,7 +139,7 @@ public function getName() { /** * Sets the name of this configuration object. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function setName($name) { @@ -246,7 +246,7 @@ public function get($key = '') { * @param array $data * The new configuration data. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function setData(array $data) { @@ -266,7 +266,7 @@ public function setData(array $data) { * @param array $data * The new configuration data. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ protected function replaceData(array $data) { @@ -283,7 +283,7 @@ protected function replaceData(array $data) { * @param array $data * The overridden values of the configuration data. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function setOverride(array $data) { @@ -297,7 +297,7 @@ public function setOverride(array $data) { * * Merges overridden configuration data into the original data. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ protected function setOverriddenData() { @@ -315,7 +315,7 @@ protected function setOverriddenData() { * This method should be called after the original data or the overridden data * has been changed. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ protected function resetOverriddenData() { @@ -331,7 +331,7 @@ protected function resetOverriddenData() { * @param string $value * Value to associate with identifier. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function set($key, $value) { @@ -400,7 +400,7 @@ public function castValue($value) { * @param string $key * Name of the key whose value should be unset. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function clear($key) { @@ -421,7 +421,7 @@ public function clear($key) { /** * Loads configuration data into this object. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function load() { @@ -443,7 +443,7 @@ public function load() { /** * Saves the configuration object. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function save() { @@ -461,7 +461,7 @@ public function save() { /** * Deletes the configuration object. * - * @return Drupal\Core\Config\Config + * @return \Drupal\Core\Config\Config * The configuration object. */ public function delete() { diff --git a/core/lib/Drupal/Core/Config/ConfigEvent.php b/core/lib/Drupal/Core/Config/ConfigEvent.php index 4d49312a580a670f91aa6a95a97391e6622c9309..4cfac2edb1630c011366211550d1dc2e1ed349aa 100644 --- a/core/lib/Drupal/Core/Config/ConfigEvent.php +++ b/core/lib/Drupal/Core/Config/ConfigEvent.php @@ -10,7 +10,7 @@ class ConfigEvent extends Event { /** * Configuration object. * - * @var Drupal\Core\Config\Config + * @var \Drupal\Core\Config\Config */ protected $config; diff --git a/core/lib/Drupal/Core/Config/ConfigFactory.php b/core/lib/Drupal/Core/Config/ConfigFactory.php index fe9f4cb96ba5620d6a2596aee52304b7f504272e..60b3d0d352ac2ac31df61b3d1ef3f997cd2aa7ec 100644 --- a/core/lib/Drupal/Core/Config/ConfigFactory.php +++ b/core/lib/Drupal/Core/Config/ConfigFactory.php @@ -15,18 +15,18 @@ * The configuration object factory instantiates a Config object for each * configuration object name that is accessed and returns it to callers. * - * @see Drupal\Core\Config\Config + * @see \Drupal\Core\Config\Config * * Each configuration object gets a storage controller object injected, which * is used for reading and writing the configuration data. * - * @see Drupal\Core\Config\StorageInterface + * @see \Drupal\Core\Config\StorageInterface * * A configuration context is an object containing parameters that will be * available to the configuration plug-ins for them to customize the * configuration data in different ways. * - * @see Drupal\Core\Config\Context\ContextInterface + * @see \Drupal\Core\Config\Context\ContextInterface */ class ConfigFactory { diff --git a/core/lib/Drupal/Core/Config/Context/ContextInterface.php b/core/lib/Drupal/Core/Config/Context/ContextInterface.php index e7e4904e20bcb7f254ea3a887230bc5bc0c4e310..e37d2d0e1cc556ee39f6e16e1bf4a9731afee239 100644 --- a/core/lib/Drupal/Core/Config/Context/ContextInterface.php +++ b/core/lib/Drupal/Core/Config/Context/ContextInterface.php @@ -16,8 +16,8 @@ * by the configuration object for storage operations and notifications * and contextual data to be used by configuration event listeners. * - * @see Drupal\Core\Config\Config - * @see Drupal\Core\Config\ConfigFactory + * @see \Drupal\Core\Config\Config + * @see \Drupal\Core\Config\ConfigFactory * @see \Drupal::config() */ interface ContextInterface { diff --git a/core/lib/Drupal/Core/Config/DatabaseStorage.php b/core/lib/Drupal/Core/Config/DatabaseStorage.php index 78e162907d018ae004366e6b6d57139096fcb7c3..f1363e6e1c98647ec23771d2c4c8ee186756dd9e 100644 --- a/core/lib/Drupal/Core/Config/DatabaseStorage.php +++ b/core/lib/Drupal/Core/Config/DatabaseStorage.php @@ -18,7 +18,7 @@ class DatabaseStorage implements StorageInterface { /** * The database connection. * - * @var Drupal\Core\Database\Connection + * @var \Drupal\Core\Database\Connection */ protected $connection; @@ -39,7 +39,7 @@ class DatabaseStorage implements StorageInterface { /** * Constructs a new DatabaseStorage controller. * - * @param Drupal\Core\Database\Connection $connection + * @param \Drupal\Core\Database\Connection $connection * A Database connection to use for reading and writing configuration data. * @param string $table * A database table name to store configuration data in. @@ -65,7 +65,7 @@ public function exists($name) { * Implements Drupal\Core\Config\StorageInterface::read(). * * @throws PDOException - * @throws Drupal\Core\Database\DatabaseExceptionWrapper + * @throws \Drupal\Core\Database\DatabaseExceptionWrapper * Only thrown in case $this->options['throw_exception'] is TRUE. */ public function read($name) { @@ -171,7 +171,7 @@ public function decode($raw) { * Implements Drupal\Core\Config\StorageInterface::listAll(). * * @throws PDOException - * @throws Drupal\Core\Database\DatabaseExceptionWrapper + * @throws \Drupal\Core\Database\DatabaseExceptionWrapper * Only thrown in case $this->options['throw_exception'] is TRUE. */ public function listAll($prefix = '') { @@ -184,7 +184,7 @@ public function listAll($prefix = '') { * Implements Drupal\Core\Config\StorageInterface::deleteAll(). * * @throws PDOException - * @throws Drupal\Core\Database\DatabaseExceptionWrapper + * @throws \Drupal\Core\Database\DatabaseExceptionWrapper * Only thrown in case $this->options['throw_exception'] is TRUE. */ public function deleteAll($prefix = '') { diff --git a/core/lib/Drupal/Core/Config/FileStorage.php b/core/lib/Drupal/Core/Config/FileStorage.php index 6e428b34585e9beb83791ed0580a2ea31317c87e..75209f5d33dac0dac84d19bb43c70f2fcac1a913 100644 --- a/core/lib/Drupal/Core/Config/FileStorage.php +++ b/core/lib/Drupal/Core/Config/FileStorage.php @@ -106,7 +106,7 @@ public function readMultiple(array $names) { * Implements Drupal\Core\Config\StorageInterface::write(). * * @throws Symfony\Component\Yaml\Exception\DumpException - * @throws Drupal\Core\Config\StorageException + * @throws \Drupal\Core\Config\StorageException */ public function write($name, array $data) { $data = $this->encode($data); diff --git a/core/lib/Drupal/Core/Config/InstallStorage.php b/core/lib/Drupal/Core/Config/InstallStorage.php index 53612b421ba8952f33a8307a6a4c59f6c33a56fd..e8442ea7a772135f8d51a7038ea47a3eab0c3c4d 100644 --- a/core/lib/Drupal/Core/Config/InstallStorage.php +++ b/core/lib/Drupal/Core/Config/InstallStorage.php @@ -59,7 +59,7 @@ public function getFilePath($name) { /** * Overrides Drupal\Core\Config\FileStorage::write(). * - * @throws Drupal\Core\Config\StorageException + * @throws \Drupal\Core\Config\StorageException */ public function write($name, array $data) { throw new StorageException('Write operation is not allowed during install.'); @@ -68,7 +68,7 @@ public function write($name, array $data) { /** * Overrides Drupal\Core\Config\FileStorage::delete(). * - * @throws Drupal\Core\Config\StorageException + * @throws \Drupal\Core\Config\StorageException */ public function delete($name) { throw new StorageException('Delete operation is not allowed during install.'); @@ -77,7 +77,7 @@ public function delete($name) { /** * Overrides Drupal\Core\Config\FileStorage::rename(). * - * @throws Drupal\Core\Config\StorageException + * @throws \Drupal\Core\Config\StorageException */ public function rename($name, $new_name) { throw new StorageException('Rename operation is not allowed during install.'); @@ -162,7 +162,7 @@ protected function getComponentFolder($type, $name) { /** * Overrides Drupal\Core\Config\FileStorage::deleteAll(). * - * @throws Drupal\Core\Config\StorageException + * @throws \Drupal\Core\Config\StorageException */ public function deleteAll($prefix = '') { throw new StorageException('Delete operation is not allowed during install.'); diff --git a/core/lib/Drupal/Core/Controller/ExceptionController.php b/core/lib/Drupal/Core/Controller/ExceptionController.php index 2d8adf012f2a7e64153115fc738bf060945238b4..66a6215dc7ba92d00ddd2cab352710f57ee7cddb 100644 --- a/core/lib/Drupal/Core/Controller/ExceptionController.php +++ b/core/lib/Drupal/Core/Controller/ExceptionController.php @@ -24,14 +24,14 @@ class ExceptionController extends ContainerAware { /** * The content negotiation library. * - * @var Drupal\Core\ContentNegotiation + * @var \Drupal\Core\ContentNegotiation */ protected $negotiation; /** * Constructor. * - * @param Drupal\Core\ContentNegotiation $negotiation + * @param \Drupal\Core\ContentNegotiation $negotiation * The content negotiation library to use to determine the correct response * format. */ diff --git a/core/lib/Drupal/Core/Database/StatementEmpty.php b/core/lib/Drupal/Core/Database/StatementEmpty.php index d2903616c48e38848a5ce03df7e3b6c2cbd13465..7a09add85d238233368f4be69ab9236c80e0dcdf 100644 --- a/core/lib/Drupal/Core/Database/StatementEmpty.php +++ b/core/lib/Drupal/Core/Database/StatementEmpty.php @@ -17,7 +17,7 @@ * database. Calling code can then treat it the same as if it were an actual * result set that happens to contain no records. * - * @see Drupal\search\SearchQuery + * @see \Drupal\search\SearchQuery */ class StatementEmpty implements \Iterator, StatementInterface { diff --git a/core/lib/Drupal/Core/Database/Transaction.php b/core/lib/Drupal/Core/Database/Transaction.php index f2023add842b7940a897a717e49bbac056036576..68a4fc4ea0c55d1f4506d59bd3f77f0a4dca6ff0 100644 --- a/core/lib/Drupal/Core/Database/Transaction.php +++ b/core/lib/Drupal/Core/Database/Transaction.php @@ -91,7 +91,7 @@ public function name() { * transaction has been rolled back or the log messages will be rolled back * too. * - * @see Drupal\Core\Database\Connection::rollback() + * @see \Drupal\Core\Database\Connection::rollback() * @see watchdog_exception() */ public function rollback() { diff --git a/core/lib/Drupal/Core/Datetime/DrupalDateTime.php b/core/lib/Drupal/Core/Datetime/DrupalDateTime.php index 843da4326c4937053de9c7e220556b19c2ac4fbd..08bdded821da3f7ab52c092b2d31c9bccf8edd31 100644 --- a/core/lib/Drupal/Core/Datetime/DrupalDateTime.php +++ b/core/lib/Drupal/Core/Datetime/DrupalDateTime.php @@ -15,7 +15,7 @@ * This class extends the basic component and adds in Drupal-specific * handling, like translation of the format() method. * - * @see Drupal/Component/Datetime/DateTimePlus.php + * @see \Drupal/Component/Datetime/DateTimePlus.php */ class DrupalDateTime extends DateTimePlus { diff --git a/core/lib/Drupal/Core/Entity/DatabaseStorageController.php b/core/lib/Drupal/Core/Entity/DatabaseStorageController.php index 4bd89ae9e9a179e1c87b0f9e22ea49c14fa5756c..cae434fdccb9a19d1445bda3609dc77628773ea8 100644 --- a/core/lib/Drupal/Core/Entity/DatabaseStorageController.php +++ b/core/lib/Drupal/Core/Entity/DatabaseStorageController.php @@ -168,7 +168,7 @@ public function loadMultiple(array $ids = NULL) { if (!empty($this->entityInfo['class'])) { // We provide the necessary arguments for PDO to create objects of the // specified entity class. - // @see Drupal\Core\Entity\EntityInterface::__construct() + // @see \Drupal\Core\Entity\EntityInterface::__construct() $query_result->setFetchMode(\PDO::FETCH_CLASS, $this->entityInfo['class'], array(array(), $this->entityType)); } $queried_entities = $query_result->fetchAllAssoc($this->idKey); @@ -221,7 +221,7 @@ public function loadRevision($revision_id) { if (!empty($this->entityInfo['class'])) { // We provide the necessary arguments for PDO to create objects of the // specified entity class. - // @see Drupal\Core\Entity\EntityInterface::__construct() + // @see \Drupal\Core\Entity\EntityInterface::__construct() $query_result->setFetchMode(\PDO::FETCH_CLASS, $this->entityInfo['class'], array(array(), $this->entityType)); } $queried_entities = $query_result->fetchAllAssoc($this->idKey); diff --git a/core/lib/Drupal/Core/Entity/EntityFormController.php b/core/lib/Drupal/Core/Entity/EntityFormController.php index 7dcd16adb5885df8965e91351187473e8bd2706e..675fa9810b961f96ce5ed8e3340ae3d2b0015c58 100644 --- a/core/lib/Drupal/Core/Entity/EntityFormController.php +++ b/core/lib/Drupal/Core/Entity/EntityFormController.php @@ -144,7 +144,7 @@ protected function init(array &$form_state) { /** * Returns the actual form array to be built. * - * @see Drupal\Core\Entity\EntityFormController::build() + * @see \Drupal\Core\Entity\EntityFormController::build() */ public function form(array $form, array &$form_state) { $entity = $this->entity; diff --git a/core/lib/Drupal/Core/Entity/EntityListController.php b/core/lib/Drupal/Core/Entity/EntityListController.php index 1846b5f37b319e81112485d9737ab6887071bd20..7312e3f50b820d4d833c3d3124285755259c21b7 100644 --- a/core/lib/Drupal/Core/Entity/EntityListController.php +++ b/core/lib/Drupal/Core/Entity/EntityListController.php @@ -145,7 +145,7 @@ public function getOperations(EntityInterface $entity) { * @return array * A render array structure of header strings. * - * @see Drupal\Core\Entity\EntityListController::render() + * @see \Drupal\Core\Entity\EntityListController::render() */ public function buildHeader() { $row['operations'] = t('Operations'); @@ -161,7 +161,7 @@ public function buildHeader() { * @return array * A render array structure of fields for this entity. * - * @see Drupal\Core\Entity\EntityListController::render() + * @see \Drupal\Core\Entity\EntityListController::render() */ public function buildRow(EntityInterface $entity) { $row['operations']['data'] = $this->buildOperations($entity); @@ -177,7 +177,7 @@ public function buildRow(EntityInterface $entity) { * @return array * A renderable array of operation links. * - * @see Drupal\Core\Entity\EntityListController::render() + * @see \Drupal\Core\Entity\EntityListController::render() */ public function buildOperations(EntityInterface $entity) { // Retrieve and sort operations. diff --git a/core/lib/Drupal/Core/Entity/Query/QueryInterface.php b/core/lib/Drupal/Core/Entity/Query/QueryInterface.php index 3c2682c6de2812353ca68621a6d72b87c96ff804..d7110ca734b08b2d5dc4fc9c0d98c4c0972bea10 100644 --- a/core/lib/Drupal/Core/Entity/Query/QueryInterface.php +++ b/core/lib/Drupal/Core/Entity/Query/QueryInterface.php @@ -62,8 +62,8 @@ public function getEntityType(); * Language code (optional). * * @return \Drupal\Core\Entity\Query\QueryInterface - * @see Drupal\Core\Entity\Query\andConditionGroup - * @see Drupal\Core\Entity\Query\orConditionGroup + * @see \Drupal\Core\Entity\Query\andConditionGroup + * @see \Drupal\Core\Entity\Query\orConditionGroup */ public function condition($field, $value = NULL, $operator = NULL, $langcode = NULL); diff --git a/core/lib/Drupal/Core/FileTransfer/FileTransfer.php b/core/lib/Drupal/Core/FileTransfer/FileTransfer.php index d94e9c74f056578567474417e8b24ccef262a1f5..3e25befbda4f505a41801ef38e9b3e33797cba4b 100644 --- a/core/lib/Drupal/Core/FileTransfer/FileTransfer.php +++ b/core/lib/Drupal/Core/FileTransfer/FileTransfer.php @@ -76,7 +76,7 @@ function __construct($jail) { * @return object * New instance of the appropriate FileTransfer subclass. * - * @throws Drupal\Core\FileTransfer\FileTransferException + * @throws \Drupal\Core\FileTransfer\FileTransferException */ static function factory($jail, $settings) { throw new FileTransferException('FileTransfer::factory() static method not overridden by FileTransfer subclass.'); @@ -137,7 +137,7 @@ public final function copyDirectory($source, $destination) { * @param bool $recursive * Pass TRUE to recursively chmod the entire directory specified in $path. * - * @throws Drupal\Core\FileTransfer\FileTransferException + * @throws \Drupal\Core\FileTransfer\FileTransferException * * @see http://php.net/chmod */ @@ -208,7 +208,7 @@ public final function removeFile($destination) { * @param string $path * A path to check against the jail. * - * @throws Drupal\Core\FileTransfer\FileTransferException + * @throws \Drupal\Core\FileTransfer\FileTransferException */ protected final function checkPath($path) { $full_jail = $this->chroot . $this->jail; diff --git a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php index 93cca8bc1caba52cf695081bf869d1768d614361..02eec8c7156e57d89b23a635fe5ad8badfe6f09d 100644 --- a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php +++ b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php @@ -22,7 +22,7 @@ class DatabaseStorageExpirable extends DatabaseStorage implements KeyValueStoreE /** * The connection object for this storage. * - * @var Drupal\Core\Database\Connection + * @var \Drupal\Core\Database\Connection */ protected $connection; diff --git a/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php b/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php index d03d19bf19a1ba108141eab3580b27e2ade42f62..b5b3cd17db80d15cf8e502f0c6f9c77f4514c832 100644 --- a/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php +++ b/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php @@ -25,7 +25,7 @@ class PathProcessorFront implements InboundPathProcessorInterface, OutboundPathP /** * Constructs a PathProcessorFront object. * - * @param Drupal\Core\Config\ConfigFactory $config + * @param \Drupal\Core\Config\ConfigFactory $config * A config factory for retrieving the site front page configuration. */ public function __construct(ConfigFactory $config) { diff --git a/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php b/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php index a1991716804ea4a054fa7e68b048057521407c99..b3f9b5ea383239a7ff9508de5daf537cbccb49bc 100644 --- a/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php +++ b/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php @@ -54,7 +54,7 @@ class CacheDecorator implements CachedDiscoveryInterface { /** * The Discovery object being decorated. * - * @var Drupal\Component\Plugin\Discovery\DiscoveryInterface + * @var \Drupal\Component\Plugin\Discovery\DiscoveryInterface */ protected $decorated; @@ -63,7 +63,7 @@ class CacheDecorator implements CachedDiscoveryInterface { * * It uses the DiscoveryInterface object it should decorate. * - * @param Drupal\Component\Plugin\Discovery\DiscoveryInterface $decorated + * @param \Drupal\Component\Plugin\Discovery\DiscoveryInterface $decorated * The object implementing DiscoveryInterface that is being decorated. * @param string $cache_key * The cache identifier used for storage of the definition list. diff --git a/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php b/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php index 8f599892c81b098d786161cf16d0a525562f4191..4733c8cb2e1f233c9bc7cf0715dca7a2039f3916 100644 --- a/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php +++ b/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php @@ -17,7 +17,7 @@ class InfoHookDecorator implements DiscoveryInterface { /** * The Discovery object being decorated. * - * @var Drupal\Component\Plugin\Discovery\DiscoveryInterface + * @var \Drupal\Component\Plugin\Discovery\DiscoveryInterface */ protected $decorated; @@ -31,7 +31,7 @@ class InfoHookDecorator implements DiscoveryInterface { /** * Constructs a InfoHookDecorator object. * - * @param Drupal\Component\Plugin\Discovery\DiscoveryInterface $decorated + * @param \Drupal\Component\Plugin\Discovery\DiscoveryInterface $decorated * The object implementing DiscoveryInterface that is being decorated. * @param string $hook * The name of the info hook to be invoked by this discovery instance. diff --git a/core/lib/Drupal/Core/Routing/MatcherDumper.php b/core/lib/Drupal/Core/Routing/MatcherDumper.php index 8c91aa2b2dd37b5676789ade991cbfdb82b1c86c..72c0bee650174e97dd7b0f1d517239d2bb5f0782 100644 --- a/core/lib/Drupal/Core/Routing/MatcherDumper.php +++ b/core/lib/Drupal/Core/Routing/MatcherDumper.php @@ -25,7 +25,7 @@ class MatcherDumper implements MatcherDumperInterface { /** * The database connection to which to dump route information. * - * @var Drupal\Core\Database\Connection + * @var \Drupal\Core\Database\Connection */ protected $connection; @@ -46,7 +46,7 @@ class MatcherDumper implements MatcherDumperInterface { /** * Construct the MatcherDumper. * - * @param Drupal\Core\Database\Connection $connection + * @param \Drupal\Core\Database\Connection $connection * The database connection which will be used to store the route * information. * @param string $table diff --git a/core/lib/Drupal/Core/Routing/RouteProvider.php b/core/lib/Drupal/Core/Routing/RouteProvider.php index 5a79ea87a61d518d5e1fc7b47ba7f039e3a6bdd0..9c660e887a4aa3239317430187fc240fc43ed68f 100644 --- a/core/lib/Drupal/Core/Routing/RouteProvider.php +++ b/core/lib/Drupal/Core/Routing/RouteProvider.php @@ -23,7 +23,7 @@ class RouteProvider implements RouteProviderInterface { /** * The database connection from which to read route information. * - * @var Drupal\Core\Database\Connection + * @var \Drupal\Core\Database\Connection */ protected $connection; diff --git a/core/lib/Drupal/Core/StreamWrapper/PublicStream.php b/core/lib/Drupal/Core/StreamWrapper/PublicStream.php index 94f551406e4c0dc2992d3e1118f09ea8bcac9a5f..90f17b33049b3ba6a1e12c320bae8057e250b3b3 100644 --- a/core/lib/Drupal/Core/StreamWrapper/PublicStream.php +++ b/core/lib/Drupal/Core/StreamWrapper/PublicStream.php @@ -40,7 +40,7 @@ public static function basePath() { $base_path = settings()->get('file_public_path', conf_path() . '/files'); if ($test_prefix = drupal_valid_test_ua()) { // Append the testing suffix unless already given. - // @see Drupal\simpletest\WebTestBase::setUp() + // @see \Drupal\simpletest\WebTestBase::setUp() if (strpos($base_path, '/simpletest/' . substr($test_prefix, 10)) === FALSE) { return $base_path . '/simpletest/' . substr($test_prefix, 10); } diff --git a/core/lib/Drupal/Core/Template/AttributeArray.php b/core/lib/Drupal/Core/Template/AttributeArray.php index 4f1875f066d787e245dce4dc6fd34475afa9226b..354f5677ecb6e2ef525317ea13d5e8cee432a242 100644 --- a/core/lib/Drupal/Core/Template/AttributeArray.php +++ b/core/lib/Drupal/Core/Template/AttributeArray.php @@ -25,7 +25,7 @@ * $attributes['class'][] = 'cat'; * @endcode * - * @see Drupal\Core\Template\Attribute + * @see \Drupal\Core\Template\Attribute */ class AttributeArray extends AttributeValueBase implements \ArrayAccess, \IteratorAggregate { diff --git a/core/lib/Drupal/Core/Template/AttributeBoolean.php b/core/lib/Drupal/Core/Template/AttributeBoolean.php index 23efced2605de9d797fc6c1cf078f63799256f12..f32f4608cd5f3b60fd255cb4193992fcc5f69cc7 100644 --- a/core/lib/Drupal/Core/Template/AttributeBoolean.php +++ b/core/lib/Drupal/Core/Template/AttributeBoolean.php @@ -26,7 +26,7 @@ * // produces