diff --git a/core/includes/entity.api.php b/core/includes/entity.api.php
index 88a8015..5bc4c57 100644
--- a/core/includes/entity.api.php
+++ b/core/includes/entity.api.php
@@ -157,7 +157,7 @@ function hook_entity_bundle_delete($entity_type, $bundle) {
  */
 function hook_entity_info_alter(&$entity_info) {
   // Set the controller class for nodes to an alternate implementation of the
-  // Drupal\Core\Entity\EntityStorageControllerInterface interface.
+  // \Drupal\Core\Entity\EntityStorageControllerInterface interface.
   $entity_info['node']['controllers']['storage'] = 'Drupal\mymodule\MyCustomNodeStorageController';
 }
 
@@ -198,20 +198,20 @@ function hook_entity_load($entities, $entity_type) {
 /**
  * Act on an entity before it is about to be created or updated.
  *
- * @param Drupal\Core\Entity\EntityInterface $entity
+ * @param \Drupal\Core\Entity\EntityInterface $entity
  *   The entity object.
  */
-function hook_entity_presave(Drupal\Core\Entity\EntityInterface $entity) {
+function hook_entity_presave(\Drupal\Core\Entity\EntityInterface $entity) {
   $entity->changed = REQUEST_TIME;
 }
 
 /**
  * Act on entities when inserted.
  *
- * @param Drupal\Core\Entity\EntityInterface $entity
+ * @param \Drupal\Core\Entity\EntityInterface $entity
  *   The entity object.
  */
-function hook_entity_insert(Drupal\Core\Entity\EntityInterface $entity) {
+function hook_entity_insert(\Drupal\Core\Entity\EntityInterface $entity) {
   // Insert the new entity into a fictional table of all entities.
   db_insert('example_entity')
     ->fields(array(
@@ -226,10 +226,10 @@ function hook_entity_insert(Drupal\Core\Entity\EntityInterface $entity) {
 /**
  * Act on entities when updated.
  *
- * @param Drupal\Core\Entity\EntityInterface $entity
+ * @param \Drupal\Core\Entity\EntityInterface $entity
  *   The entity object.
  */
-function hook_entity_update(Drupal\Core\Entity\EntityInterface $entity) {
+function hook_entity_update(\Drupal\Core\Entity\EntityInterface $entity) {
   // Update the entity's entry in a fictional table of all entities.
   db_update('example_entity')
     ->fields(array(
@@ -245,10 +245,10 @@ function hook_entity_update(Drupal\Core\Entity\EntityInterface $entity) {
  *
  * This hook runs after the entity type-specific predelete hook.
  *
- * @param Drupal\Core\Entity\EntityInterface $entity
+ * @param \Drupal\Core\Entity\EntityInterface $entity
  *   The entity object for the entity that is about to be deleted.
  */
-function hook_entity_predelete(Drupal\Core\Entity\EntityInterface $entity) {
+function hook_entity_predelete(\Drupal\Core\Entity\EntityInterface $entity) {
   // Count references to this entity in a custom table before they are removed
   // upon entity deletion.
   $id = $entity->id();
@@ -274,10 +274,10 @@ function hook_entity_predelete(Drupal\Core\Entity\EntityInterface $entity) {
  *
  * This hook runs after the entity type-specific delete hook.
  *
- * @param Drupal\Core\Entity\EntityInterface $entity
+ * @param \Drupal\Core\Entity\EntityInterface $entity
  *   The entity object for the entity that has been deleted.
  */
-function hook_entity_delete(Drupal\Core\Entity\EntityInterface $entity) {
+function hook_entity_delete(\Drupal\Core\Entity\EntityInterface $entity) {
   // Delete the entity's entry from a fictional table of all entities.
   db_delete('example_entity')
     ->condition('type', $entity->entityType())
@@ -286,7 +286,7 @@ function hook_entity_delete(Drupal\Core\Entity\EntityInterface $entity) {
 }
 
 /**
- * Alter or execute an Drupal\Core\Entity\Query\EntityQueryInterface.
+ * Alter or execute an \Drupal\Core\Entity\Query\EntityQueryInterface.
  *
  * @param \Drupal\Core\Entity\Query\QueryInterface $query
  *   Note the $query->altered attribute which is TRUE in case the query has
@@ -349,7 +349,7 @@ function hook_entity_view(\Drupal\Core\Entity\EntityInterface $entity, \Drupal\e
  *
  * @param $build
  *   A renderable array representing the entity content.
- * @param Drupal\Core\Entity\EntityInterface $entity
+ * @param \Drupal\Core\Entity\EntityInterface $entity
  *   The entity object being rendered.
  * @param \Drupal\entity\Plugin\Core\Entity\EntityDisplay $display
  *   The entity_display object holding the display options configured for the
@@ -361,7 +361,7 @@ function hook_entity_view(\Drupal\Core\Entity\EntityInterface $entity, \Drupal\e
  * @see hook_taxonomy_term_view_alter()
  * @see hook_user_view_alter()
  */
-function hook_entity_view_alter(&$build, Drupal\Core\Entity\EntityInterface $entity, \Drupal\entity\Plugin\Core\Entity\EntityDisplay $display) {
+function hook_entity_view_alter(&$build, \Drupal\Core\Entity\EntityInterface $entity, \Drupal\entity\Plugin\Core\Entity\EntityDisplay $display) {
   if ($build['#view_mode'] == 'full' && isset($build['an_additional_field'])) {
     // Change its weight.
     $build['an_additional_field']['#weight'] = -10;
@@ -414,13 +414,13 @@ function hook_entity_prepare_view($entity_type, array $entities, array $displays
  *
  * @param string $view_mode
  *   The view_mode that is to be used to display the entity.
- * @param Drupal\Core\Entity\EntityInterface $entity
+ * @param \Drupal\Core\Entity\EntityInterface $entity
  *   The entity that is being viewed.
  * @param array $context
  *   Array with additional context information, currently only contains the
  *   langcode the entity is viewed in.
  */
-function hook_entity_view_mode_alter(&$view_mode, Drupal\Core\Entity\EntityInterface $entity, $context) {
+function hook_entity_view_mode_alter(&$view_mode, \Drupal\Core\Entity\EntityInterface $entity, $context) {
   // For nodes, change the view mode when it is teaser.
   if ($entity->entityType() == 'node' && $view_mode == 'teaser') {
     $view_mode = 'my_custom_view_mode';
@@ -619,7 +619,7 @@ function hook_entity_field_access($operation, $field, \Drupal\Core\Session\Accou
  *   - operation: The operation to be performed (string).
  *   - field: The entity field object (\Drupal\Core\Entity\Field\Type\Field).
  *   - account: The user account to check access for
- *     (Drupal\user\Plugin\Core\Entity\User).
+ *     (\Drupal\user\Plugin\Core\Entity\User).
  */
 function hook_entity_field_access_alter(array &$grants, array $context) {
   $field = $context['field'];
diff --git a/core/lib/Drupal/Component/Annotation/AnnotationInterface.php b/core/lib/Drupal/Component/Annotation/AnnotationInterface.php
index e3aacc6..0287665 100644
--- a/core/lib/Drupal/Component/Annotation/AnnotationInterface.php
+++ b/core/lib/Drupal/Component/Annotation/AnnotationInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Component\Annotation\AnnotationInterface.
+ * Contains \Drupal\Component\Annotation\AnnotationInterface.
  */
 
 namespace Drupal\Component\Annotation;
diff --git a/core/lib/Drupal/Component/Annotation/Plugin.php b/core/lib/Drupal/Component/Annotation/Plugin.php
index 0af3010..a0ac7c5 100644
--- a/core/lib/Drupal/Component/Annotation/Plugin.php
+++ b/core/lib/Drupal/Component/Annotation/Plugin.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Component\Annotation\Plugin.
+ * Contains \Drupal\Component\Annotation\Plugin.
  */
 
 namespace Drupal\Component\Annotation;
@@ -71,7 +71,7 @@ protected function parse(array $values) {
   }
 
   /**
-   * Implements Drupal\Core\Annotation\AnnotationInterface::get().
+   * Implements \Drupal\Core\Annotation\AnnotationInterface::get().
    */
   public function get() {
     return $this->definition;
diff --git a/core/lib/Drupal/Component/Annotation/PluginID.php b/core/lib/Drupal/Component/Annotation/PluginID.php
index dcb27aa..b551e4f 100644
--- a/core/lib/Drupal/Component/Annotation/PluginID.php
+++ b/core/lib/Drupal/Component/Annotation/PluginID.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Component\Annotation\PluginID.
+ * Contains \Drupal\Component\Annotation\PluginID.
  */
 
 namespace Drupal\Component\Annotation;
diff --git a/core/lib/Drupal/Component/Archiver/ArchiverException.php b/core/lib/Drupal/Component/Archiver/ArchiverException.php
index 0ef91b5..fdc9710 100644
--- a/core/lib/Drupal/Component/Archiver/ArchiverException.php
+++ b/core/lib/Drupal/Component/Archiver/ArchiverException.php
@@ -2,13 +2,13 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Archiver\ArchiverException.
+ * Definition of \Drupal\Component\Archiver\ArchiverException.
  */
 
 namespace Drupal\Component\Archiver;
 
 /**
- * Defines an exception class for Drupal\Component\Archiver\ArchiverInterface.
+ * Defines an exception class for \Drupal\Component\Archiver\ArchiverInterface.
  */
 class ArchiverException extends \Exception {}
 
diff --git a/core/lib/Drupal/Component/Archiver/ArchiverInterface.php b/core/lib/Drupal/Component/Archiver/ArchiverInterface.php
index 96d9992..04fd920 100644
--- a/core/lib/Drupal/Component/Archiver/ArchiverInterface.php
+++ b/core/lib/Drupal/Component/Archiver/ArchiverInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Archiver\ArchiverInterface.
+ * Definition of \Drupal\Component\Archiver\ArchiverInterface.
  */
 
 namespace Drupal\Component\Archiver;
@@ -19,7 +19,7 @@
    *   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 f06f3e0..8312b75 100644
--- a/core/lib/Drupal/Component/Archiver/Tar.php
+++ b/core/lib/Drupal/Component/Archiver/Tar.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Archiver\Tar.
+ * Definition of \Drupal\Component\Archiver\Tar.
  */
 
 namespace Drupal\Component\Archiver;
@@ -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,14 +27,14 @@ 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);
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::add().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::add().
    */
   public function add($file_path) {
     $this->tar->add($file_path);
@@ -43,7 +43,7 @@ public function add($file_path) {
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::remove().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::remove().
    */
   public function remove($file_path) {
     // @todo Archive_Tar doesn't have a remove operation
@@ -55,7 +55,7 @@ public function remove($file_path) {
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::extract().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::extract().
    */
   public function extract($path, array $files = array()) {
     if ($files) {
@@ -69,7 +69,7 @@ public function extract($path, array $files = array()) {
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::listContents().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::listContents().
    */
   public function listContents() {
     $files = array();
diff --git a/core/lib/Drupal/Component/Archiver/Zip.php b/core/lib/Drupal/Component/Archiver/Zip.php
index 3f0a066..7e4c208 100644
--- a/core/lib/Drupal/Component/Archiver/Zip.php
+++ b/core/lib/Drupal/Component/Archiver/Zip.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Archiver\Zip.
+ * Definition of \Drupal\Component\Archiver\Zip.
  */
 
 namespace Drupal\Component\Archiver;
@@ -31,7 +31,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();
@@ -41,7 +41,7 @@ public function __construct($file_path) {
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::add().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::add().
    */
   public function add($file_path) {
     $this->zip->addFile($file_path);
@@ -50,7 +50,7 @@ public function add($file_path) {
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::remove().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::remove().
    */
   public function remove($file_path) {
     $this->zip->deleteName($file_path);
@@ -59,7 +59,7 @@ public function remove($file_path) {
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::extract().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::extract().
    */
   public function extract($path, Array $files = array()) {
     if ($files) {
@@ -73,7 +73,7 @@ public function extract($path, Array $files = array()) {
   }
 
   /**
-   * Implements Drupal\Component\Archiver\ArchiveInterface::listContents().
+   * Implements \Drupal\Component\Archiver\ArchiveInterface::listContents().
    */
   public function listContents() {
     $files = array();
diff --git a/core/lib/Drupal/Component/Datetime/DateTimePlus.php b/core/lib/Drupal/Component/Datetime/DateTimePlus.php
index b00124b..e2d630c 100644
--- a/core/lib/Drupal/Component/Datetime/DateTimePlus.php
+++ b/core/lib/Drupal/Component/Datetime/DateTimePlus.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Datetime\DateTimePlus
+ * Definition of \Drupal\Component\Datetime\DateTimePlus
  */
 namespace Drupal\Component\Datetime;
 
diff --git a/core/lib/Drupal/Component/Gettext/PoHeader.php b/core/lib/Drupal/Component/Gettext/PoHeader.php
index 44959eb..02afafa 100644
--- a/core/lib/Drupal/Component/Gettext/PoHeader.php
+++ b/core/lib/Drupal/Component/Gettext/PoHeader.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoHeader
+ * Definition of \Drupal\Component\Gettext\PoHeader
  */
 
 namespace Drupal\Component\Gettext;
diff --git a/core/lib/Drupal/Component/Gettext/PoItem.php b/core/lib/Drupal/Component/Gettext/PoItem.php
index 599a58a..f2c1f62 100644
--- a/core/lib/Drupal/Component/Gettext/PoItem.php
+++ b/core/lib/Drupal/Component/Gettext/PoItem.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoItem.
+ * Definition of \Drupal\Component\Gettext\PoItem.
  */
 
 namespace Drupal\Component\Gettext;
diff --git a/core/lib/Drupal/Component/Gettext/PoMemoryWriter.php b/core/lib/Drupal/Component/Gettext/PoMemoryWriter.php
index 11c5361..7af4bbd 100644
--- a/core/lib/Drupal/Component/Gettext/PoMemoryWriter.php
+++ b/core/lib/Drupal/Component/Gettext/PoMemoryWriter.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoMemoryWriter.
+ * Definition of \Drupal\Component\Gettext\PoMemoryWriter.
  */
 
 namespace Drupal\Component\Gettext;
@@ -31,7 +31,7 @@ function __construct() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoWriterInterface::writeItem().
+   * Implements \Drupal\Component\Gettext\PoWriterInterface::writeItem().
    */
   public function writeItem(PoItem $item) {
     if (is_array($item->getSource())) {
@@ -43,7 +43,7 @@ public function writeItem(PoItem $item) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoWriterInterface::writeItems().
+   * Implements \Drupal\Component\Gettext\PoWriterInterface::writeItems().
    */
   public function writeItems(PoReaderInterface $reader, $count = -1) {
     $forever = $count == -1;
@@ -62,7 +62,7 @@ public function getData() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface:setLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface:setLangcode().
    *
    * Not implemented. Not relevant for the MemoryWriter.
    */
@@ -70,7 +70,7 @@ function setLangcode($langcode) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface:getLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface:getLangcode().
    *
    * Not implemented. Not relevant for the MemoryWriter.
    */
@@ -78,7 +78,7 @@ function getLangcode() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface:getHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface:getHeader().
    *
    * Not implemented. Not relevant for the MemoryWriter.
    */
@@ -86,7 +86,7 @@ function getHeader() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface:setHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface:setHeader().
    *
    * Not implemented. Not relevant for the MemoryWriter.
    */
diff --git a/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php b/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php
index f5bb3db..c75089b 100644
--- a/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php
+++ b/core/lib/Drupal/Component/Gettext/PoMetadataInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoMetadataInterface.
+ * Definition of \Drupal\Component\Gettext\PoMetadataInterface.
  */
 
 namespace Drupal\Component\Gettext;
@@ -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 @@ 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.
    */
   function setHeader(PoHeader $header);
@@ -44,7 +44,7 @@ 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.
    */
   function getHeader();
diff --git a/core/lib/Drupal/Component/Gettext/PoReaderInterface.php b/core/lib/Drupal/Component/Gettext/PoReaderInterface.php
index e9c0125..e0d14ea 100644
--- a/core/lib/Drupal/Component/Gettext/PoReaderInterface.php
+++ b/core/lib/Drupal/Component/Gettext/PoReaderInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoReaderInterface.
+ * Definition of \Drupal\Component\Gettext\PoReaderInterface.
  */
 
 namespace Drupal\Component\Gettext;
@@ -17,7 +17,7 @@
   /**
    * Reads and returns a PoItem (source/translation pair).
    *
-   * @return Drupal\Component\Gettext\PoItem
+   * @return \Drupal\Component\Gettext\PoItem
    *   Wrapper for item data instance.
    */
   function readItem();
diff --git a/core/lib/Drupal/Component/Gettext/PoStreamInterface.php b/core/lib/Drupal/Component/Gettext/PoStreamInterface.php
index c9f9e34..7ca9753 100644
--- a/core/lib/Drupal/Component/Gettext/PoStreamInterface.php
+++ b/core/lib/Drupal/Component/Gettext/PoStreamInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoStreamInterface.
+ * Definition of \Drupal\Component\Gettext\PoStreamInterface.
  */
 
 namespace Drupal\Component\Gettext;
diff --git a/core/lib/Drupal/Component/Gettext/PoStreamReader.php b/core/lib/Drupal/Component/Gettext/PoStreamReader.php
index 61c6083..f8eda1b 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;
 
@@ -113,28 +113,28 @@ class PoStreamReader implements PoStreamInterface, PoReaderInterface {
   private $_errors;
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::getLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::getLangcode().
    */
   public function getLangcode() {
     return $this->_langcode;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::setLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::setLangcode().
    */
   public function setLangcode($langcode) {
     $this->_langcode = $langcode;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::getHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::getHeader().
    */
   public function getHeader() {
     return $this->_header;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::setHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::setHeader().
    *
    * Not applicable to stream reading and therefore not implemented.
    */
@@ -142,21 +142,21 @@ public function setHeader(PoHeader $header) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::getURI().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::getURI().
    */
   public function getURI() {
     return $this->_uri;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::setURI().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::setURI().
    */
   public function setURI($uri) {
     $this->_uri = $uri;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::open().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::open().
    *
    * Opens the stream and reads the header. The stream is ready for reading
    * items after.
@@ -176,7 +176,7 @@ public function open() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::close().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::close().
    *
    * @throws Exception
    *   If the stream is not open.
@@ -191,7 +191,7 @@ public function close() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoReaderInterface::readItem().
+   * Implements \Drupal\Component\Gettext\PoReaderInterface::readItem().
    */
   public function readItem() {
     // Clear out the last item.
diff --git a/core/lib/Drupal/Component/Gettext/PoStreamWriter.php b/core/lib/Drupal/Component/Gettext/PoStreamWriter.php
index d066307..5508075 100644
--- a/core/lib/Drupal/Component/Gettext/PoStreamWriter.php
+++ b/core/lib/Drupal/Component/Gettext/PoStreamWriter.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoStreamWriter.
+ * Definition of \Drupal\Component\Gettext\PoStreamWriter.
  */
 
 namespace Drupal\Component\Gettext;
@@ -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) {
@@ -80,7 +80,7 @@ public function setLangcode($langcode) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::open().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::open().
    */
   public function open() {
     // Open in write mode. Will overwrite the stream if it already exists.
@@ -90,7 +90,7 @@ public function open() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::close().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::close().
    *
    * @throws Exception
    *   If the stream is not open.
@@ -129,14 +129,14 @@ private function writeHeader() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoWriterInterface::writeItem().
+   * Implements \Drupal\Component\Gettext\PoWriterInterface::writeItem().
    */
   public function writeItem(PoItem $item) {
     $this->write($item);
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoWriterInterface::writeItems().
+   * Implements \Drupal\Component\Gettext\PoWriterInterface::writeItems().
    */
   public function writeItems(PoReaderInterface $reader, $count = -1) {
     $forever = $count == -1;
@@ -146,7 +146,7 @@ public function writeItems(PoReaderInterface $reader, $count = -1) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::getURI().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::getURI().
    *
    * @throws Exception
    *   If the URI is not set.
@@ -159,7 +159,7 @@ public function getURI() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoStreamInterface::setURI().
+   * Implements \Drupal\Component\Gettext\PoStreamInterface::setURI().
    */
   public function setURI($uri) {
     $this->_uri = $uri;
diff --git a/core/lib/Drupal/Component/Gettext/PoWriterInterface.php b/core/lib/Drupal/Component/Gettext/PoWriterInterface.php
index 2a2348f..21d83c6 100644
--- a/core/lib/Drupal/Component/Gettext/PoWriterInterface.php
+++ b/core/lib/Drupal/Component/Gettext/PoWriterInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Gettext\PoWriterInterface.
+ * Definition of \Drupal\Component\Gettext\PoWriterInterface.
  */
 
 namespace Drupal\Component\Gettext;
diff --git a/core/lib/Drupal/Component/Graph/Graph.php b/core/lib/Drupal/Component/Graph/Graph.php
index 8fc7d21..38706da 100644
--- a/core/lib/Drupal/Component/Graph/Graph.php
+++ b/core/lib/Drupal/Component/Graph/Graph.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Graph\Graph.
+ * Definition of \Drupal\Component\Graph\Graph.
  */
 
 namespace Drupal\Component\Graph;
@@ -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/PhpStorage/FileReadOnlyStorage.php b/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php
index bfb7a2a..4a9bf7c 100644
--- a/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php
+++ b/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\PhpStorage\FileStorage.
+ * Definition of \Drupal\Component\PhpStorage\FileStorage.
  */
 
 namespace Drupal\Component\PhpStorage;
@@ -34,14 +34,14 @@ public function __construct(array $configuration) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::exists().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::exists().
    */
   public function exists($name) {
     return file_exists($this->getFullPath($name));
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::load().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::load().
    */
   public function load($name) {
     // The FALSE returned on failure is enough for the caller to handle this,
@@ -50,14 +50,14 @@ public function load($name) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::save().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::save().
    */
   public function save($name, $code) {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::delete().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::delete().
    */
   public function delete($name) {
     return FALSE;
@@ -71,14 +71,14 @@ protected function getFullPath($name) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::writeable().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::writeable().
    */
   function writeable() {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::deleteAll().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::deleteAll().
    */
   public function deleteAll() {
     return FALSE;
diff --git a/core/lib/Drupal/Component/PhpStorage/FileStorage.php b/core/lib/Drupal/Component/PhpStorage/FileStorage.php
index d588af4..875a5aa 100644
--- a/core/lib/Drupal/Component/PhpStorage/FileStorage.php
+++ b/core/lib/Drupal/Component/PhpStorage/FileStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\PhpStorage\FileStorage.
+ * Definition of \Drupal\Component\PhpStorage\FileStorage.
  */
 
 namespace Drupal\Component\PhpStorage;
@@ -33,14 +33,14 @@ public function __construct(array $configuration) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::exists().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::exists().
    */
   public function exists($name) {
     return file_exists($this->getFullPath($name));
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::load().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::load().
    */
   public function load($name) {
     // The FALSE returned on failure is enough for the caller to handle this,
@@ -49,7 +49,7 @@ public function load($name) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::save().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::save().
    */
   public function save($name, $code) {
     $path = $this->getFullPath($name);
@@ -61,7 +61,7 @@ public function save($name, $code) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::delete().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::delete().
    */
   public function delete($name) {
     $path = $this->getFullPath($name);
@@ -79,14 +79,14 @@ protected function getFullPath($name) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::writeable().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::writeable().
    */
   public function writeable() {
     return TRUE;
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::deleteAll().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::deleteAll().
    */
   public function deleteAll() {
     return $this->unlink($this->directory);
diff --git a/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFastFileStorage.php b/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFastFileStorage.php
index 4d564fb..45fbb96 100644
--- a/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFastFileStorage.php
+++ b/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFastFileStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage.
+ * Definition of \Drupal\Component\PhpStorage\MTimeProtectedFastFileStorage.
  */
 
 namespace Drupal\Component\PhpStorage;
@@ -70,7 +70,7 @@ public function __construct(array $configuration) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::save().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::save().
    */
   public function save($name, $data) {
     $this->ensureDirectory();
@@ -131,7 +131,7 @@ public function save($name, $data) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::delete().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::delete().
    */
   public function delete($name) {
     $directory = dirname($this->getFullPath($name));
diff --git a/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFileStorage.php b/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFileStorage.php
index b9dd5b0..848f64c 100644
--- a/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFileStorage.php
+++ b/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFileStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\PhpStorage\MTimeProtectedFileStorage.
+ * Definition of \Drupal\Component\PhpStorage\MTimeProtectedFileStorage.
  */
 namespace Drupal\Component\PhpStorage;
 
@@ -36,7 +36,7 @@
 class MTimeProtectedFileStorage extends MTimeProtectedFastFileStorage {
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::load().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::load().
    */
   public function load($name) {
     if (($filename = $this->checkFile($name)) !== FALSE) {
@@ -47,7 +47,7 @@ public function load($name) {
   }
 
   /**
-   * Implements Drupal\Component\PhpStorage\PhpStorageInterface::exists().
+   * Implements \Drupal\Component\PhpStorage\PhpStorageInterface::exists().
    */
   public function exists($name) {
     return $this->checkFile($name) !== FALSE;
diff --git a/core/lib/Drupal/Component/PhpStorage/PhpStorageFactory.php b/core/lib/Drupal/Component/PhpStorage/PhpStorageFactory.php
index c82cfcd..3a2f626 100644
--- a/core/lib/Drupal/Component/PhpStorage/PhpStorageFactory.php
+++ b/core/lib/Drupal/Component/PhpStorage/PhpStorageFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\PhpStorage\PhpStorageFactory.
+ * Definition of \Drupal\Component\PhpStorage\PhpStorageFactory.
  */
 
 namespace Drupal\Component\PhpStorage;
diff --git a/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php b/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php
index 03ca812..53fc92b 100644
--- a/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php
+++ b/core/lib/Drupal/Component/PhpStorage/PhpStorageInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\PhpStorage\PhpStorageInterface.
+ * Definition of \Drupal\Component\PhpStorage\PhpStorageInterface.
  */
 
 namespace Drupal\Component\PhpStorage;
diff --git a/core/lib/Drupal/Component/Plugin/Derivative/DerivativeBase.php b/core/lib/Drupal/Component/Plugin/Derivative/DerivativeBase.php
index 2c5e2d2..80b3795 100644
--- a/core/lib/Drupal/Component/Plugin/Derivative/DerivativeBase.php
+++ b/core/lib/Drupal/Component/Plugin/Derivative/DerivativeBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Component\Plugin\Derivative\DerivativeBase.
+ * Contains \Drupal\Component\Plugin\Derivative\DerivativeBase.
  */
 
 namespace Drupal\Component\Plugin\Derivative;
diff --git a/core/lib/Drupal/Component/Plugin/Derivative/DerivativeInterface.php b/core/lib/Drupal/Component/Plugin/Derivative/DerivativeInterface.php
index bb07069..230c4bd 100644
--- a/core/lib/Drupal/Component/Plugin/Derivative/DerivativeInterface.php
+++ b/core/lib/Drupal/Component/Plugin/Derivative/DerivativeInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Derivative\DerivativeInterface.
+ * Definition of \Drupal\Component\Plugin\Derivative\DerivativeInterface.
  */
 
 namespace Drupal\Component\Plugin\Derivative;
diff --git a/core/lib/Drupal/Component/Plugin/Discovery/AnnotatedClassDiscovery.php b/core/lib/Drupal/Component/Plugin/Discovery/AnnotatedClassDiscovery.php
index 377bf4a..541ebc2 100644
--- a/core/lib/Drupal/Component/Plugin/Discovery/AnnotatedClassDiscovery.php
+++ b/core/lib/Drupal/Component/Plugin/Discovery/AnnotatedClassDiscovery.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Component\Plugin\Discovery\AnnotatedClassDiscovery.
+ * Contains \Drupal\Component\Plugin\Discovery\AnnotatedClassDiscovery.
  */
 
 namespace Drupal\Component\Plugin\Discovery;
@@ -63,7 +63,7 @@ function __construct($plugin_namespaces = array(), $annotation_namespaces = arra
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
    */
   public function getDefinition($plugin_id) {
     $plugins = $this->getDefinitions();
@@ -71,7 +71,7 @@ public function getDefinition($plugin_id) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     $definitions = array();
diff --git a/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php b/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php
index e245874..bf3c806 100644
--- a/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php
+++ b/core/lib/Drupal/Component/Plugin/Discovery/DerivativeDiscoveryDecorator.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Discovery\DerivativeDiscoveryDecorator.
+ * Definition of \Drupal\Component\Plugin\Discovery\DerivativeDiscoveryDecorator.
  */
 
 namespace Drupal\Component\Plugin\Discovery;
@@ -19,7 +19,7 @@ class DerivativeDiscoveryDecorator implements DiscoveryInterface {
   protected $decorated;
 
   /**
-   * Creates a Drupal\Component\Plugin\Discovery\DerivativeDiscoveryDecorator
+   * Creates a \Drupal\Component\Plugin\Discovery\DerivativeDiscoveryDecorator
    * object.
    *
    * @param DiscoveryInterface $discovery
@@ -31,7 +31,7 @@ public function __construct(DiscoveryInterface $decorated) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
    */
   public function getDefinition($plugin_id) {
 
@@ -49,7 +49,7 @@ public function getDefinition($plugin_id) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     $plugin_definitions = $this->decorated->getDefinitions();
@@ -124,9 +124,9 @@ protected function encodePluginId($base_plugin_id, $derivative_id) {
   }
 
   /**
-   * Finds a Drupal\Component\Plugin\Discovery\DerivativeInterface.
+   * Finds a \Drupal\Component\Plugin\Discovery\DerivativeInterface.
    *
-   * This Drupal\Component\Plugin\Discovery\DerivativeInterface can fetch
+   * This \Drupal\Component\Plugin\Discovery\DerivativeInterface can fetch
    * derivatives for the plugin.
    *
    * @param string $base_plugin_id
@@ -134,7 +134,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/Discovery/DiscoveryInterface.php b/core/lib/Drupal/Component/Plugin/Discovery/DiscoveryInterface.php
index aaf4743..c0523a3 100644
--- a/core/lib/Drupal/Component/Plugin/Discovery/DiscoveryInterface.php
+++ b/core/lib/Drupal/Component/Plugin/Discovery/DiscoveryInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Discovery\DiscoveryInterface.
+ * Definition of \Drupal\Component\Plugin\Discovery\DiscoveryInterface.
  */
 
 namespace Drupal\Component\Plugin\Discovery;
diff --git a/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php b/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php
index de74fb5..8df8e2f 100644
--- a/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php
+++ b/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscovery.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Discovery\StaticDiscovery.
+ * Definition of \Drupal\Component\Plugin\Discovery\StaticDiscovery.
  */
 
 namespace Drupal\Component\Plugin\Discovery;
@@ -21,14 +21,14 @@ class StaticDiscovery implements DiscoveryInterface {
   protected $definitions = array();
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
    */
   public function getDefinition($base_plugin_id) {
     return isset($this->definitions[$base_plugin_id]) ? $this->definitions[$base_plugin_id] : NULL;
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     return $this->definitions;
diff --git a/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php b/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php
index c92ae8d..b5677c2 100644
--- a/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php
+++ b/core/lib/Drupal/Component/Plugin/Discovery/StaticDiscoveryDecorator.php
@@ -41,7 +41,7 @@ public function __construct(DiscoveryInterface $decorated, $registerDefinitions
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
    */
   public function getDefinition($base_plugin_id) {
     if (isset($this->registerDefinitions)) {
@@ -52,7 +52,7 @@ public function getDefinition($base_plugin_id) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     if (isset($this->registerDefinitions)) {
diff --git a/core/lib/Drupal/Component/Plugin/Exception/ExceptionInterface.php b/core/lib/Drupal/Component/Plugin/Exception/ExceptionInterface.php
index 57fb25b..34809d3 100644
--- a/core/lib/Drupal/Component/Plugin/Exception/ExceptionInterface.php
+++ b/core/lib/Drupal/Component/Plugin/Exception/ExceptionInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Exception\ExceptionInterface.
+ * Definition of \Drupal\Component\Plugin\Exception\ExceptionInterface.
  */
 
 namespace Drupal\Component\Plugin\Exception;
diff --git a/core/lib/Drupal/Component/Plugin/Exception/InvalidDecoratedMethod.php b/core/lib/Drupal/Component/Plugin/Exception/InvalidDecoratedMethod.php
index a3ef8e6..18c0161 100644
--- a/core/lib/Drupal/Component/Plugin/Exception/InvalidDecoratedMethod.php
+++ b/core/lib/Drupal/Component/Plugin/Exception/InvalidDecoratedMethod.php
@@ -1,7 +1,7 @@
 <?php
 /**
 * @file
-* Definition of Drupal\Core\Plugin\Exception\InvalidDecoratedMethod.
+* Definition of \Drupal\Core\Plugin\Exception\InvalidDecoratedMethod.
 */
 
 namespace Drupal\Component\Plugin\Exception;
diff --git a/core/lib/Drupal/Component/Plugin/Exception/PluginException.php b/core/lib/Drupal/Component/Plugin/Exception/PluginException.php
index 707955e..17afc90 100644
--- a/core/lib/Drupal/Component/Plugin/Exception/PluginException.php
+++ b/core/lib/Drupal/Component/Plugin/Exception/PluginException.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Exception\PluginException.
+ * Definition of \Drupal\Component\Plugin\Exception\PluginException.
  */
 
 namespace Drupal\Component\Plugin\Exception;
diff --git a/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php b/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php
index d049814..ba98500 100644
--- a/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php
+++ b/core/lib/Drupal/Component/Plugin/Factory/DefaultFactory.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Factory\DefaultFactory.
+ * Definition of \Drupal\Component\Plugin\Factory\DefaultFactory.
  */
 
 namespace Drupal\Component\Plugin\Factory;
@@ -16,7 +16,7 @@
  * Instantiates plugin instances by passing the full configuration array as a
  * single constructor argument. Plugin types wanting to support plugin classes
  * with more flexible constructor signatures can do so by using an alternate
- * factory such as Drupal\Component\Plugin\Factory\ReflectionFactory.
+ * factory such as \Drupal\Component\Plugin\Factory\ReflectionFactory.
  */
 class DefaultFactory implements FactoryInterface {
 
@@ -26,19 +26,19 @@ 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;
 
   /**
-   * Constructs a Drupal\Component\Plugin\Factory\DefaultFactory object.
+   * Constructs a \Drupal\Component\Plugin\Factory\DefaultFactory object.
    */
   public function __construct(DiscoveryInterface $discovery) {
     $this->discovery = $discovery;
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Factory\FactoryInterface::createInstance().
+   * Implements \Drupal\Component\Plugin\Factory\FactoryInterface::createInstance().
    */
   public function createInstance($plugin_id, array $configuration) {
     $plugin_definition = $this->discovery->getDefinition($plugin_id);
diff --git a/core/lib/Drupal/Component/Plugin/Factory/FactoryInterface.php b/core/lib/Drupal/Component/Plugin/Factory/FactoryInterface.php
index d0f11ff..e696048 100644
--- a/core/lib/Drupal/Component/Plugin/Factory/FactoryInterface.php
+++ b/core/lib/Drupal/Component/Plugin/Factory/FactoryInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Factory\FactoryInterface.
+ * Definition of \Drupal\Component\Plugin\Factory\FactoryInterface.
  */
 
 namespace Drupal\Component\Plugin\Factory;
diff --git a/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php b/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php
index 01f300e..971ef40 100644
--- a/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php
+++ b/core/lib/Drupal/Component/Plugin/Factory/ReflectionFactory.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Factory\ReflectionFactory.
+ * Definition of \Drupal\Component\Plugin\Factory\ReflectionFactory.
  */
 
 namespace Drupal\Component\Plugin\Factory;
@@ -17,7 +17,7 @@
 class ReflectionFactory extends DefaultFactory {
 
   /**
-   * Implements Drupal\Component\Plugin\Factory\FactoryInterface::createInstance().
+   * Implements \Drupal\Component\Plugin\Factory\FactoryInterface::createInstance().
    */
   public function createInstance($plugin_id, array $configuration) {
     $plugin_definition = $this->discovery->getDefinition($plugin_id);
diff --git a/core/lib/Drupal/Component/Plugin/Mapper/MapperInterface.php b/core/lib/Drupal/Component/Plugin/Mapper/MapperInterface.php
index 785ca09..0c34947 100644
--- a/core/lib/Drupal/Component/Plugin/Mapper/MapperInterface.php
+++ b/core/lib/Drupal/Component/Plugin/Mapper/MapperInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\Mapper\MapperInterface.
+ * Definition of \Drupal\Component\Plugin\Mapper\MapperInterface.
  */
 
 namespace Drupal\Component\Plugin\Mapper;
diff --git a/core/lib/Drupal/Component/Plugin/PluginBase.php b/core/lib/Drupal/Component/Plugin/PluginBase.php
index eccddc9..c4e6d13 100644
--- a/core/lib/Drupal/Component/Plugin/PluginBase.php
+++ b/core/lib/Drupal/Component/Plugin/PluginBase.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\PluginBase
+ * Definition of \Drupal\Component\Plugin\PluginBase
  */
 
 namespace Drupal\Component\Plugin;
@@ -33,7 +33,7 @@
   protected $configuration;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
diff --git a/core/lib/Drupal/Component/Plugin/PluginInspectionInterface.php b/core/lib/Drupal/Component/Plugin/PluginInspectionInterface.php
index 42eb4b9..fb3ad8d 100644
--- a/core/lib/Drupal/Component/Plugin/PluginInspectionInterface.php
+++ b/core/lib/Drupal/Component/Plugin/PluginInspectionInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\PluginInspectionInterface.
+ * Definition of \Drupal\Component\Plugin\PluginInspectionInterface.
  */
 
 namespace Drupal\Component\Plugin;
diff --git a/core/lib/Drupal/Component/Plugin/PluginManagerBase.php b/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
index a043acc..e2bfb48 100644
--- a/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
+++ b/core/lib/Drupal/Component/Plugin/PluginManagerBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Plugin\PluginManagerBase
+ * Definition of \Drupal\Component\Plugin\PluginManagerBase
  */
 
 namespace Drupal\Component\Plugin;
diff --git a/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php b/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php
index a7d74a8..5b568c7 100644
--- a/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php
+++ b/core/lib/Drupal/Component/Plugin/PluginManagerInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Component\Plugin\PluginManagerInterface
+ * Definition of \Drupal\Component\Plugin\PluginManagerInterface
  */
 
 namespace Drupal\Component\Plugin;
@@ -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/Component/Reflection/MockFileFinder.php b/core/lib/Drupal/Component/Reflection/MockFileFinder.php
index 34c6949..e7e8a58 100644
--- a/core/lib/Drupal/Component/Reflection/MockFileFinder.php
+++ b/core/lib/Drupal/Component/Reflection/MockFileFinder.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Reflection\MockFileFinder.
+ * Definition of \Drupal\Component\Reflection\MockFileFinder.
  */
 
 namespace Drupal\Component\Reflection;
diff --git a/core/lib/Drupal/Component/Utility/DiffArray.php b/core/lib/Drupal/Component/Utility/DiffArray.php
index e496723..936fe06 100644
--- a/core/lib/Drupal/Component/Utility/DiffArray.php
+++ b/core/lib/Drupal/Component/Utility/DiffArray.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Component\Utility\DiffArray.
+ * Contains \Drupal\Component\Utility\DiffArray.
  */
 
 namespace Drupal\Component\Utility;
diff --git a/core/lib/Drupal/Component/Utility/NestedArray.php b/core/lib/Drupal/Component/Utility/NestedArray.php
index acfdc2f..334ce76 100644
--- a/core/lib/Drupal/Component/Utility/NestedArray.php
+++ b/core/lib/Drupal/Component/Utility/NestedArray.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Component\Utility\NestedArray.
+ * Contains \Drupal\Component\Utility\NestedArray.
  */
 
 namespace Drupal\Component\Utility;
diff --git a/core/lib/Drupal/Component/Utility/UrlValidator.php b/core/lib/Drupal/Component/Utility/UrlValidator.php
index 4772373..535f96a 100644
--- a/core/lib/Drupal/Component/Utility/UrlValidator.php
+++ b/core/lib/Drupal/Component/Utility/UrlValidator.php
@@ -53,7 +53,7 @@ public static function setAllowedProtocols(array $protocols = array()) {
    * check_url() or filter_xss(), but those functions return an HTML-encoded
    * string, so this function can be called independently when the output needs to
    * be a plain-text string for passing to t(), l(),
-   * Drupal\Core\Template\Attribute, or another function that will call
+   * \Drupal\Core\Template\Attribute, or another function that will call
    * check_plain() separately.
    *
    * @param string $uri
diff --git a/core/lib/Drupal/Component/Uuid/Com.php b/core/lib/Drupal/Component/Uuid/Com.php
index 945a30b..72b60d5 100644
--- a/core/lib/Drupal/Component/Uuid/Com.php
+++ b/core/lib/Drupal/Component/Uuid/Com.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Uuid\Com.
+ * Definition of \Drupal\Component\Uuid\Com.
  */
 
 namespace Drupal\Component\Uuid;
diff --git a/core/lib/Drupal/Component/Uuid/Pecl.php b/core/lib/Drupal/Component/Uuid/Pecl.php
index 3d4cb27..5695bfe 100644
--- a/core/lib/Drupal/Component/Uuid/Pecl.php
+++ b/core/lib/Drupal/Component/Uuid/Pecl.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Uuid\Pecl.
+ * Definition of \Drupal\Component\Uuid\Pecl.
  */
 
 namespace Drupal\Component\Uuid;
@@ -13,7 +13,7 @@
 class Pecl implements UuidInterface {
 
   /**
-   * Implements Drupal\Component\Uuid\UuidInterface::generate().
+   * Implements \Drupal\Component\Uuid\UuidInterface::generate().
    */
   public function generate() {
     return uuid_create(UUID_TYPE_DEFAULT);
diff --git a/core/lib/Drupal/Component/Uuid/Php.php b/core/lib/Drupal/Component/Uuid/Php.php
index 3841f36..a37e0e4 100644
--- a/core/lib/Drupal/Component/Uuid/Php.php
+++ b/core/lib/Drupal/Component/Uuid/Php.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Uuid\Php.
+ * Definition of \Drupal\Component\Uuid\Php.
  */
 
 namespace Drupal\Component\Uuid;
@@ -19,7 +19,7 @@
 class Php implements UuidInterface {
 
   /**
-   * Implements Drupal\Component\Uuid\UuidInterface::generate().
+   * Implements \Drupal\Component\Uuid\UuidInterface::generate().
    */
   public function generate() {
     $hex = substr(hash('sha256', Crypt::randomBytes(16)), 0, 32);
diff --git a/core/lib/Drupal/Component/Uuid/Uuid.php b/core/lib/Drupal/Component/Uuid/Uuid.php
index 5df83ce..4243c1a 100644
--- a/core/lib/Drupal/Component/Uuid/Uuid.php
+++ b/core/lib/Drupal/Component/Uuid/Uuid.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Uuid\Uuid.
+ * Definition of \Drupal\Component\Uuid\Uuid.
  */
 
 namespace Drupal\Component\Uuid;
@@ -18,7 +18,7 @@ class Uuid {
   /**
    * Holds the UUID implementation.
    *
-   * @var Drupal\Component\Uuid\UuidInterface
+   * @var \Drupal\Component\Uuid\UuidInterface
    */
   protected $plugin;
 
@@ -33,7 +33,7 @@ public function __construct() {
   /**
    * Generates a universally unique identifier.
    *
-   * @see Drupal\Component\Uuid\UuidInterface::generate()
+   * @see \Drupal\Component\Uuid\UuidInterface::generate()
    */
   public function generate() {
     return $this->plugin->generate();
diff --git a/core/lib/Drupal/Component/Uuid/UuidInterface.php b/core/lib/Drupal/Component/Uuid/UuidInterface.php
index d1225ba..409f782 100644
--- a/core/lib/Drupal/Component/Uuid/UuidInterface.php
+++ b/core/lib/Drupal/Component/Uuid/UuidInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Component\Uuid\UuidInterface.
+ * Definition of \Drupal\Component\Uuid\UuidInterface.
  */
 
 namespace Drupal\Component\Uuid;
diff --git a/core/lib/Drupal/Core/Access/AccessCheckInterface.php b/core/lib/Drupal/Core/Access/AccessCheckInterface.php
index 172e095..6afd2ec 100644
--- a/core/lib/Drupal/Core/Access/AccessCheckInterface.php
+++ b/core/lib/Drupal/Core/Access/AccessCheckInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Access\AccessCheckInterface.
+ * Contains \Drupal\Core\Access\AccessCheckInterface.
  */
 
 namespace Drupal\Core\Access;
diff --git a/core/lib/Drupal/Core/Access/AccessManager.php b/core/lib/Drupal/Core/Access/AccessManager.php
index d5fd047..280a130 100644
--- a/core/lib/Drupal/Core/Access/AccessManager.php
+++ b/core/lib/Drupal/Core/Access/AccessManager.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Contains Drupal\Core\Access\AccessManager.
+ * Contains \Drupal\Core\Access\AccessManager.
  */
 
 namespace Drupal\Core\Access;
diff --git a/core/lib/Drupal/Core/Access/DefaultAccessCheck.php b/core/lib/Drupal/Core/Access/DefaultAccessCheck.php
index 647bae5..3127703 100644
--- a/core/lib/Drupal/Core/Access/DefaultAccessCheck.php
+++ b/core/lib/Drupal/Core/Access/DefaultAccessCheck.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Access\DefaultAccessCheck.
+ * Contains \Drupal\Core\Access\DefaultAccessCheck.
  */
 
 namespace Drupal\Core\Access;
diff --git a/core/lib/Drupal/Core/Ajax/AddCssCommand.php b/core/lib/Drupal/Core/Ajax/AddCssCommand.php
index d28a4b5..c624710 100644
--- a/core/lib/Drupal/Core/Ajax/AddCssCommand.php
+++ b/core/lib/Drupal/Core/Ajax/AddCssCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\AddCssCommand.
+ * Definition of \Drupal\Core\Ajax\AddCssCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -40,7 +40,7 @@ public function __construct($styles) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/AfterCommand.php b/core/lib/Drupal/Core/Ajax/AfterCommand.php
index e56a92c..185e289 100644
--- a/core/lib/Drupal/Core/Ajax/AfterCommand.php
+++ b/core/lib/Drupal/Core/Ajax/AfterCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\AfterCommand.
+ * Definition of \Drupal\Core\Ajax\AfterCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -24,7 +24,7 @@
 class AfterCommand extends InsertCommand {
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/AjaxResponse.php b/core/lib/Drupal/Core/Ajax/AjaxResponse.php
index 2a72267..3cc2fd9 100644
--- a/core/lib/Drupal/Core/Ajax/AjaxResponse.php
+++ b/core/lib/Drupal/Core/Ajax/AjaxResponse.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\AjaxResponse.
+ * Definition of \Drupal\Core\Ajax\AjaxResponse.
  */
 
 namespace Drupal\Core\Ajax;
diff --git a/core/lib/Drupal/Core/Ajax/AlertCommand.php b/core/lib/Drupal/Core/Ajax/AlertCommand.php
index 02a96a3..e3f5770 100644
--- a/core/lib/Drupal/Core/Ajax/AlertCommand.php
+++ b/core/lib/Drupal/Core/Ajax/AlertCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\AlertCommand.
+ * Definition of \Drupal\Core\Ajax\AlertCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -32,7 +32,7 @@ public function __construct($text) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/AppendCommand.php b/core/lib/Drupal/Core/Ajax/AppendCommand.php
index cc334aa..2070418 100644
--- a/core/lib/Drupal/Core/Ajax/AppendCommand.php
+++ b/core/lib/Drupal/Core/Ajax/AppendCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\AppendCommand.
+ * Definition of \Drupal\Core\Ajax\AppendCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -24,7 +24,7 @@
 class AppendCommand extends InsertCommand {
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/BeforeCommand.php b/core/lib/Drupal/Core/Ajax/BeforeCommand.php
index 62b3b2f..d98e53e 100644
--- a/core/lib/Drupal/Core/Ajax/BeforeCommand.php
+++ b/core/lib/Drupal/Core/Ajax/BeforeCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\InsertCommand.
+ * Definition of \Drupal\Core\Ajax\InsertCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -24,7 +24,7 @@
 class BeforeCommand extends InsertCommand {
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/ChangedCommand.php b/core/lib/Drupal/Core/Ajax/ChangedCommand.php
index 904880d..8be94aa 100644
--- a/core/lib/Drupal/Core/Ajax/ChangedCommand.php
+++ b/core/lib/Drupal/Core/Ajax/ChangedCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\ChangedCommand.
+ * Definition of \Drupal\Core\Ajax\ChangedCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -51,7 +51,7 @@ public function __construct($selector, $asterisk = '') {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/CommandInterface.php b/core/lib/Drupal/Core/Ajax/CommandInterface.php
index 9de3af5..c06bfc6 100644
--- a/core/lib/Drupal/Core/Ajax/CommandInterface.php
+++ b/core/lib/Drupal/Core/Ajax/CommandInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\CommandInterface.
+ * Definition of \Drupal\Core\Ajax\CommandInterface.
  */
 
 namespace Drupal\Core\Ajax;
diff --git a/core/lib/Drupal/Core/Ajax/CssCommand.php b/core/lib/Drupal/Core/Ajax/CssCommand.php
index f878cae..99707c6 100644
--- a/core/lib/Drupal/Core/Ajax/CssCommand.php
+++ b/core/lib/Drupal/Core/Ajax/CssCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\CssCommand.
+ * Definition of \Drupal\Core\Ajax\CssCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -66,7 +66,7 @@ public function setProperty($property, $value) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/DataCommand.php b/core/lib/Drupal/Core/Ajax/DataCommand.php
index e7e8dbf..41cbec7 100644
--- a/core/lib/Drupal/Core/Ajax/DataCommand.php
+++ b/core/lib/Drupal/Core/Ajax/DataCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\DataCommand.
+ * Definition of \Drupal\Core\Ajax\DataCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -63,7 +63,7 @@ public function __construct($selector, $name, $value) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/HtmlCommand.php b/core/lib/Drupal/Core/Ajax/HtmlCommand.php
index 3e26f03..29ca9a2 100644
--- a/core/lib/Drupal/Core/Ajax/HtmlCommand.php
+++ b/core/lib/Drupal/Core/Ajax/HtmlCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\HtmlCommand.
+ * Definition of \Drupal\Core\Ajax\HtmlCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -24,7 +24,7 @@
 class HtmlCommand extends InsertCommand {
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/InsertCommand.php b/core/lib/Drupal/Core/Ajax/InsertCommand.php
index 9871ef2..55ed1ee 100644
--- a/core/lib/Drupal/Core/Ajax/InsertCommand.php
+++ b/core/lib/Drupal/Core/Ajax/InsertCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\InsertCommand.
+ * Definition of \Drupal\Core\Ajax\InsertCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -62,7 +62,7 @@ public function __construct($selector, $html, array $settings = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/InvokeCommand.php b/core/lib/Drupal/Core/Ajax/InvokeCommand.php
index d04b5f5..e3f3487 100644
--- a/core/lib/Drupal/Core/Ajax/InvokeCommand.php
+++ b/core/lib/Drupal/Core/Ajax/InvokeCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\InvokeCommand.
+ * Definition of \Drupal\Core\Ajax\InvokeCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -63,7 +63,7 @@ public function __construct($selector, $method, array $arguments = array()) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/PrependCommand.php b/core/lib/Drupal/Core/Ajax/PrependCommand.php
index ccaf67a..d59db5f 100644
--- a/core/lib/Drupal/Core/Ajax/PrependCommand.php
+++ b/core/lib/Drupal/Core/Ajax/PrependCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\PrependCommand.
+ * Definition of \Drupal\Core\Ajax\PrependCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -24,7 +24,7 @@
 class PrependCommand extends InsertCommand {
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/RemoveCommand.php b/core/lib/Drupal/Core/Ajax/RemoveCommand.php
index dd6085f..d0a31c5 100644
--- a/core/lib/Drupal/Core/Ajax/RemoveCommand.php
+++ b/core/lib/Drupal/Core/Ajax/RemoveCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\RemoveCommand.
+ * Definition of \Drupal\Core\Ajax\RemoveCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -41,7 +41,7 @@ public function __construct($selector) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
     return array(
diff --git a/core/lib/Drupal/Core/Ajax/ReplaceCommand.php b/core/lib/Drupal/Core/Ajax/ReplaceCommand.php
index 50c39af..94e556c 100644
--- a/core/lib/Drupal/Core/Ajax/ReplaceCommand.php
+++ b/core/lib/Drupal/Core/Ajax/ReplaceCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\ReplaceCommand.
+ * Definition of \Drupal\Core\Ajax\ReplaceCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -25,7 +25,7 @@
 class ReplaceCommand extends InsertCommand {
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/RestripeCommand.php b/core/lib/Drupal/Core/Ajax/RestripeCommand.php
index 460eb50..06df861 100644
--- a/core/lib/Drupal/Core/Ajax/RestripeCommand.php
+++ b/core/lib/Drupal/Core/Ajax/RestripeCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\RestripeCommand.
+ * Definition of \Drupal\Core\Ajax\RestripeCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -41,7 +41,7 @@ public function __construct($selector) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Ajax/SettingsCommand.php b/core/lib/Drupal/Core/Ajax/SettingsCommand.php
index d31fdbf..538fa3d 100644
--- a/core/lib/Drupal/Core/Ajax/SettingsCommand.php
+++ b/core/lib/Drupal/Core/Ajax/SettingsCommand.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Ajax\SettingsCommand.
+ * Definition of \Drupal\Core\Ajax\SettingsCommand.
  */
 
 namespace Drupal\Core\Ajax;
@@ -55,7 +55,7 @@ public function __construct(array $settings, $merge = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
 
diff --git a/core/lib/Drupal/Core/Annotation/Translation.php b/core/lib/Drupal/Core/Annotation/Translation.php
index d98e3a1..6a5f5a3 100644
--- a/core/lib/Drupal/Core/Annotation/Translation.php
+++ b/core/lib/Drupal/Core/Annotation/Translation.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Annotation\Translation.
+ * Definition of \Drupal\Core\Annotation\Translation.
  */
 
 namespace Drupal\Core\Annotation;
@@ -70,7 +70,7 @@ public function __construct($values) {
   }
 
   /**
-   * Implements Drupal\Core\Annotation\AnnotationInterface::get().
+   * Implements \Drupal\Core\Annotation\AnnotationInterface::get().
    */
   public function get() {
     return $this->translation;
diff --git a/core/lib/Drupal/Core/Cache/BackendChain.php b/core/lib/Drupal/Core/Cache/BackendChain.php
index 5df1a08..4dfdfdc 100644
--- a/core/lib/Drupal/Core/Cache/BackendChain.php
+++ b/core/lib/Drupal/Core/Cache/BackendChain.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Cache\BackendChain.
+ * Definition of \Drupal\Core\Cache\BackendChain.
  */
 
 namespace Drupal\Core\Cache;
@@ -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) {
@@ -70,7 +70,7 @@ public function prependBackend(CacheBackendInterface $backend) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::get().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::get().
    */
   public function get($cid, $allow_invalid = FALSE) {
     foreach ($this->backends as $index => $backend) {
@@ -90,7 +90,7 @@ public function get($cid, $allow_invalid = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::getMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::getMultiple().
    */
   public function getMultiple(&$cids, $allow_invalid = FALSE) {
     $return = array();
@@ -121,7 +121,7 @@ public function getMultiple(&$cids, $allow_invalid = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::set().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::set().
    */
   public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANENT, array $tags = array()) {
     foreach ($this->backends as $backend) {
@@ -130,7 +130,7 @@ public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANEN
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::delete().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::delete().
    */
   public function delete($cid) {
     foreach ($this->backends as $backend) {
@@ -139,7 +139,7 @@ public function delete($cid) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
    */
   public function deleteMultiple(array $cids) {
     foreach ($this->backends as $backend) {
@@ -148,7 +148,7 @@ public function deleteMultiple(array $cids) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteTags().
    */
   public function deleteTags(array $tags) {
     foreach ($this->backends as $backend) {
@@ -157,7 +157,7 @@ public function deleteTags(array $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteAll().
    */
   public function deleteAll() {
     foreach ($this->backends as $backend) {
@@ -166,7 +166,7 @@ public function deleteAll() {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidate().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidate().
    */
   public function invalidate($cid) {
     foreach ($this->backends as $backend) {
@@ -175,7 +175,7 @@ public function invalidate($cid) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple().
    */
   public function invalidateMultiple(array $cids) {
     foreach ($this->backends as $backend) {
@@ -184,7 +184,7 @@ public function invalidateMultiple(array $cids) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
    */
   public function invalidateTags(array $tags) {
     foreach ($this->backends as $backend) {
@@ -193,7 +193,7 @@ public function invalidateTags(array $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
    */
   public function invalidateAll() {
     foreach ($this->backends as $backend) {
@@ -202,7 +202,7 @@ public function invalidateAll() {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::garbageCollection().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::garbageCollection().
    */
   public function garbageCollection() {
     foreach ($this->backends as $backend) {
@@ -211,7 +211,7 @@ public function garbageCollection() {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::isEmpty().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::isEmpty().
    */
   public function isEmpty() {
     foreach ($this->backends as $backend) {
diff --git a/core/lib/Drupal/Core/Cache/CacheBackendInterface.php b/core/lib/Drupal/Core/Cache/CacheBackendInterface.php
index a054604..a458ade 100644
--- a/core/lib/Drupal/Core/Cache/CacheBackendInterface.php
+++ b/core/lib/Drupal/Core/Cache/CacheBackendInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Cache\CacheBackendInterface.
+ * Definition of \Drupal\Core\Cache\CacheBackendInterface.
  */
 
 namespace Drupal\Core\Cache;
@@ -11,13 +11,13 @@
  * Defines an interface for cache implementations.
  *
  * All cache implementations have to implement this interface.
- * Drupal\Core\Cache\DatabaseBackend provides the default implementation, which
+ * \Drupal\Core\Cache\DatabaseBackend provides the default implementation, which
  * can be consulted as an example.
  *
  * To make Drupal use your implementation for a certain cache bin, you have to
  * set a variable with the name of the cache bin as its key and the name of
  * your class as its value. For example, if your implementation of
- * Drupal\Core\Cache\CacheBackendInterface was called MyCustomCache, the
+ * \Drupal\Core\Cache\CacheBackendInterface was called MyCustomCache, the
  * following line would make Drupal use it for the 'cache_page' bin:
  * @code
  *  $conf['cache_classes']['cache_page'] = 'MyCustomCache';
@@ -26,7 +26,7 @@
  * Additionally, you can register your cache implementation to be used by
  * default for all cache bins by setting the $conf['cache_classes'] variable and
  * changing the value of the 'cache' key to the name of your implementation of
- * the Drupal\Core\Cache\CacheBackendInterface, e.g.
+ * the \Drupal\Core\Cache\CacheBackendInterface, e.g.
  * @code
  *  $conf['cache_classes']['cache'] = 'MyCustomCache';
  * @endcode
@@ -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 @@
    * @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/CacheFactory.php b/core/lib/Drupal/Core/Cache/CacheFactory.php
index 2697964..d958d5e 100644
--- a/core/lib/Drupal/Core/Cache/CacheFactory.php
+++ b/core/lib/Drupal/Core/Cache/CacheFactory.php
@@ -37,9 +37,9 @@ function __construct(Settings $settings) {
    * Instantiates a cache backend class for a given cache bin.
    *
    * By default, this returns an instance of the
-   * Drupal\Core\Cache\DatabaseBackend class.
+   * \Drupal\Core\Cache\DatabaseBackend class.
    *
-   * Classes implementing Drupal\Core\Cache\CacheBackendInterface can register
+   * Classes implementing \Drupal\Core\Cache\CacheBackendInterface can register
    * themselves both as a default implementation and for specific bins.
    *
    * @param string $bin
diff --git a/core/lib/Drupal/Core/Cache/DatabaseBackend.php b/core/lib/Drupal/Core/Cache/DatabaseBackend.php
index a45d338..79a4c63 100644
--- a/core/lib/Drupal/Core/Cache/DatabaseBackend.php
+++ b/core/lib/Drupal/Core/Cache/DatabaseBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Cache\DatabaseBackend.
+ * Definition of \Drupal\Core\Cache\DatabaseBackend.
  */
 
 namespace Drupal\Core\Cache;
@@ -51,7 +51,7 @@ public function __construct(Connection $connection, $bin) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::get().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::get().
    */
   public function get($cid, $allow_invalid = FALSE) {
     $cids = array($cid);
@@ -60,7 +60,7 @@ public function get($cid, $allow_invalid = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::getMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::getMultiple().
    */
   public function getMultiple(&$cids, $allow_invalid = FALSE) {
     // When serving cached pages, the overhead of using ::select() was found
@@ -138,7 +138,7 @@ protected function prepareItem($cache, $allow_invalid) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::set().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::set().
    */
   public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANENT, array $tags = array()) {
     $try_again = FALSE;
@@ -190,14 +190,14 @@ protected function doSet($cid, $data, $expire, $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::delete().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::delete().
    */
   public function delete($cid) {
     $this->deleteMultiple(array($cid));
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
    */
   public function deleteMultiple(array $cids) {
     try {
@@ -215,7 +215,7 @@ public function deleteMultiple(array $cids) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteTags().
    */
   public function deleteTags(array $tags) {
     $tag_cache = &drupal_static('Drupal\Core\Cache\CacheBackendInterface::tagCache', array());
@@ -235,7 +235,7 @@ public function deleteTags(array $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteAll().
    */
   public function deleteAll() {
     try {
@@ -247,14 +247,14 @@ public function deleteAll() {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidate().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidate().
    */
   public function invalidate($cid) {
     $this->invalidateMultiple(array($cid));
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalideMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalideMultiple().
    */
   public function invalidateMultiple(array $cids) {
     try {
@@ -273,7 +273,7 @@ public function invalidateMultiple(array $cids) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
    */
   public function invalidateTags(array $tags) {
     try {
@@ -293,7 +293,7 @@ public function invalidateTags(array $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
    */
   public function invalidateAll() {
     try {
@@ -307,7 +307,7 @@ public function invalidateAll() {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::garbageCollection().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::garbageCollection().
    */
   public function garbageCollection() {
     try {
@@ -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());
@@ -388,7 +388,7 @@ protected function checksumTags($flat_tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::isEmpty().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::isEmpty().
    */
   public function isEmpty() {
     $this->garbageCollection();
diff --git a/core/lib/Drupal/Core/Cache/MemoryBackend.php b/core/lib/Drupal/Core/Cache/MemoryBackend.php
index 77dd9fd..ad291f9 100644
--- a/core/lib/Drupal/Core/Cache/MemoryBackend.php
+++ b/core/lib/Drupal/Core/Cache/MemoryBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Cache\ArrayBackend.
+ * Definition of \Drupal\Core\Cache\ArrayBackend.
  */
 
 namespace Drupal\Core\Cache;
@@ -33,7 +33,7 @@ public function __construct($bin) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::get().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::get().
    */
   public function get($cid, $allow_invalid = FALSE) {
     if (isset($this->cache[$cid])) {
@@ -45,7 +45,7 @@ public function get($cid, $allow_invalid = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::getMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::getMultiple().
    */
   public function getMultiple(&$cids, $allow_invalid = FALSE) {
     $ret = array();
@@ -93,7 +93,7 @@ protected function prepareItem($cache, $allow_invalid) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::set().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::set().
    */
   public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANENT, array $tags = array()) {
     $this->cache[$cid] = (object) array(
@@ -106,21 +106,21 @@ public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANEN
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::delete().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::delete().
    */
   public function delete($cid) {
     unset($this->cache[$cid]);
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
    */
   public function deleteMultiple(array $cids) {
     $this->cache = array_diff_key($this->cache, array_flip($cids));
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteTags().
    */
   public function deleteTags(array $tags) {
     $flat_tags = $this->flattenTags($tags);
@@ -132,14 +132,14 @@ public function deleteTags(array $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteAll().
    */
   public function deleteAll() {
     $this->cache = array();
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidate().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidate().
    */
   public function invalidate($cid) {
     if (isset($this->cache[$cid])) {
@@ -148,7 +148,7 @@ public function invalidate($cid) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple().
    */
   public function invalidateMultiple(array $cids) {
     foreach ($cids as $cid) {
@@ -157,7 +157,7 @@ public function invalidateMultiple(array $cids) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
    */
   public function invalidateTags(array $tags) {
     $flat_tags = $this->flattenTags($tags);
@@ -169,7 +169,7 @@ public function invalidateTags(array $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
    */
   public function invalidateAll() {
     foreach ($this->cache as $cid => $item) {
@@ -206,14 +206,14 @@ protected function flattenTags(array $tags) {
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::isEmpty().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::isEmpty().
    */
   public function isEmpty() {
     return empty($this->cache);
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::garbageCollection()
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::garbageCollection()
    */
   public function garbageCollection() {
   }
diff --git a/core/lib/Drupal/Core/Cache/NullBackend.php b/core/lib/Drupal/Core/Cache/NullBackend.php
index 127101a..783d3d3 100644
--- a/core/lib/Drupal/Core/Cache/NullBackend.php
+++ b/core/lib/Drupal/Core/Cache/NullBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Cache\NullBackend.
+ * Definition of \Drupal\Core\Cache\NullBackend.
  */
 
 namespace Drupal\Core\Cache;
@@ -29,71 +29,71 @@ class NullBackend implements CacheBackendInterface {
   public function __construct($bin) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::get().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::get().
    */
   public function get($cid, $allow_invalid = FALSE) {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::getMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::getMultiple().
    */
   public function getMultiple(&$cids, $allow_invalid = FALSE) {
     return array();
   }
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::set().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::set().
    */
   public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANENT, array $tags = array()) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::delete().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::delete().
    */
   public function delete($cid) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteMultiple().
    */
   public function deleteMultiple(array $cids) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteAll().
    */
   public function deleteAll() {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::deleteTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::deleteTags().
    */
   public function deleteTags(array $tags) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidate().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidate().
    */
   public function invalidate($cid) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateMultiple().
    */
   public function invalidateMultiple(array $cids) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateTags().
    */
   public function invalidateTags(array $tags) {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::invalidateAll().
    */
   public function invalidateAll() {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::garbageCollection().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::garbageCollection().
    */
   public function garbageCollection() {}
 
   /**
-   * Implements Drupal\Core\Cache\CacheBackendInterface::isEmpty().
+   * Implements \Drupal\Core\Cache\CacheBackendInterface::isEmpty().
    */
   public function isEmpty() {
     return TRUE;
diff --git a/core/lib/Drupal/Core/CacheDecorator/AliasManagerCacheDecorator.php b/core/lib/Drupal/Core/CacheDecorator/AliasManagerCacheDecorator.php
index 01264c2..c44afc9 100644
--- a/core/lib/Drupal/Core/CacheDecorator/AliasManagerCacheDecorator.php
+++ b/core/lib/Drupal/Core/CacheDecorator/AliasManagerCacheDecorator.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\CacheDecorator\AliasManagerCacheDecorator.
+ * Contains \Drupal\Core\CacheDecorator\AliasManagerCacheDecorator.
  */
 
 namespace Drupal\Core\CacheDecorator;
diff --git a/core/lib/Drupal/Core/CacheDecorator/CacheDecoratorInterface.php b/core/lib/Drupal/Core/CacheDecorator/CacheDecoratorInterface.php
index 574d81a..5e939a2 100644
--- a/core/lib/Drupal/Core/CacheDecorator/CacheDecoratorInterface.php
+++ b/core/lib/Drupal/Core/CacheDecorator/CacheDecoratorInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\CacheDecorator\CacheDecoratorInterface.
+ * Contains \Drupal\Core\CacheDecorator\CacheDecoratorInterface.
  */
 
 namespace Drupal\Core\CacheDecorator;
diff --git a/core/lib/Drupal/Core/Condition/ConditionManager.php b/core/lib/Drupal/Core/Condition/ConditionManager.php
index 2897743..a889268 100644
--- a/core/lib/Drupal/Core/Condition/ConditionManager.php
+++ b/core/lib/Drupal/Core/Condition/ConditionManager.php
@@ -43,7 +43,7 @@ public function __construct(\Traversable $namespaces, CacheBackendInterface $cac
   }
 
   /**
-   * Override of Drupal\Component\Plugin\PluginManagerBase::createInstance().
+   * Override of \Drupal\Component\Plugin\PluginManagerBase::createInstance().
    */
   public function createInstance($plugin_id, array $configuration = array()) {
     $plugin = $this->factory->createInstance($plugin_id, $configuration);
@@ -51,7 +51,7 @@ public function createInstance($plugin_id, array $configuration = array()) {
   }
 
   /**
-   * Implements Drupal\Core\Executable\ExecutableManagerInterface::execute().
+   * Implements \Drupal\Core\Executable\ExecutableManagerInterface::execute().
    */
   public function execute(ExecutableInterface $condition) {
     $result = $condition->evaluate();
diff --git a/core/lib/Drupal/Core/Config/BootstrapConfigStorageFactory.php b/core/lib/Drupal/Core/Config/BootstrapConfigStorageFactory.php
index 054e690..8635000 100644
--- a/core/lib/Drupal/Core/Config/BootstrapConfigStorageFactory.php
+++ b/core/lib/Drupal/Core/Config/BootstrapConfigStorageFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Config\BootstrapConfigStorageFactory.
+ * Contains \Drupal\Core\Config\BootstrapConfigStorageFactory.
  */
 
 namespace Drupal\Core\Config;
diff --git a/core/lib/Drupal/Core/Config/CachedStorage.php b/core/lib/Drupal/Core/Config/CachedStorage.php
index 7d094b4..6610c7a 100644
--- a/core/lib/Drupal/Core/Config/CachedStorage.php
+++ b/core/lib/Drupal/Core/Config/CachedStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Config\CachedStorage.
+ * Contains \Drupal\Core\Config\CachedStorage.
  */
 
 namespace Drupal\Core\Config;
@@ -21,23 +21,23 @@ class CachedStorage implements StorageInterface {
   /**
    * 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;
 
   /**
    * 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) {
@@ -46,7 +46,7 @@ public function __construct(StorageInterface $storage, CacheBackendInterface $ca
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::exists().
+   * Implements \Drupal\Core\Config\StorageInterface::exists().
    */
   public function exists($name) {
     // The cache would read in the entire data (instead of only checking whether
@@ -56,7 +56,7 @@ public function exists($name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::read().
+   * Implements \Drupal\Core\Config\StorageInterface::read().
    */
   public function read($name) {
     if ($cache = $this->cache->get($name)) {
@@ -80,7 +80,7 @@ public function read($name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::write().
+   * Implements \Drupal\Core\Config\StorageInterface::write().
    */
   public function write($name, array $data) {
     if ($this->storage->write($name, $data)) {
@@ -93,7 +93,7 @@ public function write($name, array $data) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::delete().
+   * Implements \Drupal\Core\Config\StorageInterface::delete().
    */
   public function delete($name) {
     // If the cache was the first to be deleted, another process might start
@@ -106,7 +106,7 @@ public function delete($name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::rename().
+   * Implements \Drupal\Core\Config\StorageInterface::rename().
    */
   public function rename($name, $new_name) {
     // If the cache was the first to be deleted, another process might start
@@ -120,21 +120,21 @@ public function rename($name, $new_name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::encode().
+   * Implements \Drupal\Core\Config\StorageInterface::encode().
    */
   public function encode($data) {
     return $this->storage->encode($data);
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::decode().
+   * Implements \Drupal\Core\Config\StorageInterface::decode().
    */
   public function decode($raw) {
     return $this->storage->decode($raw);
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::listAll().
+   * Implements \Drupal\Core\Config\StorageInterface::listAll().
    *
    * Not supported by CacheBackendInterface.
    */
@@ -143,7 +143,7 @@ public function listAll($prefix = '') {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::deleteAll().
+   * Implements \Drupal\Core\Config\StorageInterface::deleteAll().
    */
   public function deleteAll($prefix = '') {
     // If the cache was the first to be deleted, another process might start
diff --git a/core/lib/Drupal/Core/Config/Config.php b/core/lib/Drupal/Core/Config/Config.php
index 740f316..740a558 100644
--- a/core/lib/Drupal/Core/Config/Config.php
+++ b/core/lib/Drupal/Core/Config/Config.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\Config.
+ * Definition of \Drupal\Core\Config\Config.
  */
 
 namespace Drupal\Core\Config;
@@ -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() {
@@ -120,7 +120,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) {
@@ -227,7 +227,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) {
@@ -247,7 +247,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) {
@@ -264,7 +264,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) {
@@ -278,7 +278,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() {
@@ -296,7 +296,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() {
@@ -312,7 +312,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) {
@@ -381,7 +381,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) {
@@ -402,7 +402,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() {
@@ -424,7 +424,7 @@ public function load() {
   /**
    * Saves the configuration object.
    *
-   * @return Drupal\Core\Config\Config
+   * @return \Drupal\Core\Config\Config
    *   The configuration object.
    */
   public function save() {
@@ -442,7 +442,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 4d49312..4cfac2e 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/ConfigException.php b/core/lib/Drupal/Core/Config/ConfigException.php
index 5e7daed..718e779 100644
--- a/core/lib/Drupal/Core/Config/ConfigException.php
+++ b/core/lib/Drupal/Core/Config/ConfigException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\ConfigException.
+ * Definition of \Drupal\Core\Config\ConfigException.
  */
 
 namespace Drupal\Core\Config;
diff --git a/core/lib/Drupal/Core/Config/ConfigFactory.php b/core/lib/Drupal/Core/Config/ConfigFactory.php
index dd5df1e..83dafba 100644
--- a/core/lib/Drupal/Core/Config/ConfigFactory.php
+++ b/core/lib/Drupal/Core/Config/ConfigFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\ConfigFactory.
+ * Definition of \Drupal\Core\Config\ConfigFactory.
  */
 
 namespace Drupal\Core\Config;
@@ -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/ConfigContextFactory.php b/core/lib/Drupal/Core/Config/Context/ConfigContextFactory.php
index 1642380..3593409 100644
--- a/core/lib/Drupal/Core/Config/Context/ConfigContextFactory.php
+++ b/core/lib/Drupal/Core/Config/Context/ConfigContextFactory.php
@@ -42,7 +42,7 @@ public function __construct(EventDispatcher $event_dispatcher) {
    *
    * @param string $class
    *   (Optional) The name of the configuration class to use. Defaults to
-   *   Drupal\Core\Config\Context\ConfigContext
+   *   \Drupal\Core\Config\Context\ConfigContext
    *
    * @return \Drupal\Core\Config\Context\ContextInterface $context
    *   (Optional) The configuration context to use.
diff --git a/core/lib/Drupal/Core/Config/Context/ContextInterface.php b/core/lib/Drupal/Core/Config/Context/ContextInterface.php
index 46dbcbb..b9691c0 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 config()
  */
 interface ContextInterface {
diff --git a/core/lib/Drupal/Core/Config/DatabaseStorage.php b/core/lib/Drupal/Core/Config/DatabaseStorage.php
index cc595a6..540540d 100644
--- a/core/lib/Drupal/Core/Config/DatabaseStorage.php
+++ b/core/lib/Drupal/Core/Config/DatabaseStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\DatabaseStorage.
+ * Definition of \Drupal\Core\Config\DatabaseStorage.
  */
 
 namespace Drupal\Core\Config;
@@ -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.
@@ -53,7 +53,7 @@ public function __construct(Connection $connection, $table, array $options = arr
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::exists().
+   * Implements \Drupal\Core\Config\StorageInterface::exists().
    */
   public function exists($name) {
     return (bool) $this->connection->queryRange('SELECT 1 FROM {' . $this->connection->escapeTable($this->table) . '} WHERE name = :name', 0, 1, array(
@@ -62,10 +62,10 @@ public function exists($name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::read().
+   * 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) {
@@ -86,7 +86,7 @@ public function read($name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::write().
+   * Implements \Drupal\Core\Config\StorageInterface::write().
    *
    * @throws PDOException
    *
@@ -102,7 +102,7 @@ public function write($name, array $data) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::delete().
+   * Implements \Drupal\Core\Config\StorageInterface::delete().
    *
    * @throws PDOException
    *
@@ -117,7 +117,7 @@ public function delete($name) {
 
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::rename().
+   * Implements \Drupal\Core\Config\StorageInterface::rename().
    *
    * @throws PDOException
    */
@@ -130,14 +130,14 @@ public function rename($name, $new_name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::encode().
+   * Implements \Drupal\Core\Config\StorageInterface::encode().
    */
   public function encode($data) {
     return serialize($data);
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::decode().
+   * Implements \Drupal\Core\Config\StorageInterface::decode().
    *
    * @throws ErrorException
    *   unserialize() triggers E_NOTICE if the string cannot be unserialized.
@@ -148,10 +148,10 @@ public function decode($raw) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::listAll().
+   * 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 = '') {
@@ -161,10 +161,10 @@ public function listAll($prefix = '') {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::deleteAll().
+   * 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/Entity/ConfigEntityBase.php b/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
index c8b9eda..ca2390b 100644
--- a/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
+++ b/core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\Entity\ConfigEntityBase.
+ * Definition of \Drupal\Core\Config\Entity\ConfigEntityBase.
  */
 
 namespace Drupal\Core\Config\Entity;
diff --git a/core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php b/core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php
index 14d3f18..b9ef551 100644
--- a/core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php
+++ b/core/lib/Drupal/Core/Config/Entity/ConfigEntityInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\Entity\ConfigEntityInterface.
+ * Definition of \Drupal\Core\Config\Entity\ConfigEntityInterface.
  */
 
 namespace Drupal\Core\Config\Entity;
diff --git a/core/lib/Drupal/Core/Config/Entity/ConfigEntityListController.php b/core/lib/Drupal/Core/Config/Entity/ConfigEntityListController.php
index 41c3ba6..00c812d 100644
--- a/core/lib/Drupal/Core/Config/Entity/ConfigEntityListController.php
+++ b/core/lib/Drupal/Core/Config/Entity/ConfigEntityListController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\Entity\ConfigEntityListController.
+ * Definition of \Drupal\Core\Config\Entity\ConfigEntityListController.
  */
 
 namespace Drupal\Core\Config\Entity;
@@ -16,7 +16,7 @@
 class ConfigEntityListController extends EntityListController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityListController::load().
+   * Overrides \Drupal\Core\Entity\EntityListController::load().
    */
   public function load() {
     $entities = parent::load();
diff --git a/core/lib/Drupal/Core/Config/Entity/ConfigStorageController.php b/core/lib/Drupal/Core/Config/Entity/ConfigStorageController.php
index b86e1f0..8ba14e1 100644
--- a/core/lib/Drupal/Core/Config/Entity/ConfigStorageController.php
+++ b/core/lib/Drupal/Core/Config/Entity/ConfigStorageController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\Entity\ConfigStorageController.
+ * Definition of \Drupal\Core\Config\Entity\ConfigStorageController.
  */
 
 namespace Drupal\Core\Config\Entity;
@@ -114,7 +114,7 @@ public static function createInstance(ContainerInterface $container, $entity_typ
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::load().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::load().
    */
   public function load(array $ids = NULL) {
     $entities = array();
@@ -153,21 +153,21 @@ public function load(array $ids = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::loadRevision().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::loadRevision().
    */
   public function loadRevision($revision_id) {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::deleteRevision().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::deleteRevision().
    */
   public function deleteRevision($revision_id) {
     return NULL;
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::loadByProperties().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::loadByProperties().
    */
   public function loadByProperties(array $values = array()) {
     $entities = $this->load();
@@ -230,8 +230,8 @@ public static function getIDFromConfigName($config_name, $config_prefix) {
    * being loaded needs to be augmented with additional data from another
    * table, such as loading node type into comments or vocabulary machine name
    * into terms, however it can also support $conditions on different tables.
-   * See Drupal\comment\CommentStorageController::buildQuery() or
-   * Drupal\taxonomy\TermStorageController::buildQuery() for examples.
+   * See \Drupal\comment\CommentStorageController::buildQuery() or
+   * \Drupal\taxonomy\TermStorageController::buildQuery() for examples.
    *
    * @param $ids
    *   An array of entity IDs, or NULL to load all entities.
@@ -278,7 +278,7 @@ protected function buildQuery($ids, $revision_id = FALSE) {
    * hook_node_load() or hook_user_load(). If your hook_TYPE_load()
    * expects special parameters apart from the queried entities, you can set
    * $this->hookLoadArguments prior to calling the method.
-   * See Drupal\node\NodeStorageController::attachLoad() for an example.
+   * See \Drupal\node\NodeStorageController::attachLoad() for an example.
    *
    * @param $queried_entities
    *   Associative array of query results, keyed on the entity ID.
@@ -302,7 +302,7 @@ protected function attachLoad(&$queried_entities, $revision_id = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::create().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::create().
    */
   public function create(array $values) {
     $class = $this->entityInfo['class'];
@@ -336,7 +336,7 @@ public function create(array $values) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::delete().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::delete().
    */
   public function delete(array $entities) {
     if (!$entities) {
@@ -362,7 +362,7 @@ public function delete(array $entities) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::save().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::save().
    *
    * @throws EntityMalformedException
    *   When attempting to save a configuration entity that has no ID.
@@ -452,7 +452,7 @@ protected function invokeHook($hook, EntityInterface $entity) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityStorageControllerInterface::getQueryServicename().
+   * Implements \Drupal\Core\Entity\EntityStorageControllerInterface::getQueryServicename().
    */
   public function getQueryServicename() {
     return 'entity.query.config';
diff --git a/core/lib/Drupal/Core/Config/FileStorage.php b/core/lib/Drupal/Core/Config/FileStorage.php
index 6422e9d..8dada4a 100644
--- a/core/lib/Drupal/Core/Config/FileStorage.php
+++ b/core/lib/Drupal/Core/Config/FileStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\FileStorage.
+ * Definition of \Drupal\Core\Config\FileStorage.
  */
 
 namespace Drupal\Core\Config;
@@ -67,14 +67,14 @@ public static function getFileExtension() {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::exists().
+   * Implements \Drupal\Core\Config\StorageInterface::exists().
    */
   public function exists($name) {
     return file_exists($this->getFilePath($name));
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::read().
+   * Implements \Drupal\Core\Config\StorageInterface::read().
    *
    * @throws Symfony\Component\Yaml\Exception\ParseException
    */
@@ -90,10 +90,10 @@ public function read($name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::write().
+   * 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);
@@ -105,7 +105,7 @@ public function write($name, array $data) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::delete().
+   * Implements \Drupal\Core\Config\StorageInterface::delete().
    */
   public function delete($name) {
     if (!$this->exists($name)) {
@@ -118,7 +118,7 @@ public function delete($name) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::rename().
+   * Implements \Drupal\Core\Config\StorageInterface::rename().
    */
   public function rename($name, $new_name) {
     $status = @rename($this->getFilePath($name), $this->getFilePath($new_name));
@@ -156,7 +156,7 @@ protected function getParser() {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::encode().
+   * Implements \Drupal\Core\Config\StorageInterface::encode().
    *
    * @throws Symfony\Component\Yaml\Exception\DumpException
    */
@@ -167,7 +167,7 @@ public function encode($data) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::decode().
+   * Implements \Drupal\Core\Config\StorageInterface::decode().
    *
    * @throws Symfony\Component\Yaml\Exception\ParseException
    */
@@ -181,7 +181,7 @@ public function decode($raw) {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::listAll().
+   * Implements \Drupal\Core\Config\StorageInterface::listAll().
    */
   public function listAll($prefix = '') {
     // glob() silently ignores the error of a non-existing search directory,
@@ -198,7 +198,7 @@ public function listAll($prefix = '') {
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::deleteAll().
+   * Implements \Drupal\Core\Config\StorageInterface::deleteAll().
    */
   public function deleteAll($prefix = '') {
     $success = TRUE;
diff --git a/core/lib/Drupal/Core/Config/InstallStorage.php b/core/lib/Drupal/Core/Config/InstallStorage.php
index 53612b4..69cef3f 100644
--- a/core/lib/Drupal/Core/Config/InstallStorage.php
+++ b/core/lib/Drupal/Core/Config/InstallStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Config\InstallStorage.
+ * Contains \Drupal\Core\Config\InstallStorage.
  */
 
 namespace Drupal\Core\Config;
@@ -22,13 +22,13 @@ class InstallStorage extends FileStorage {
   protected $folders;
 
   /**
-   * Overrides Drupal\Core\Config\FileStorage::__construct().
+   * Overrides \Drupal\Core\Config\FileStorage::__construct().
    */
   public function __construct() {
   }
 
   /**
-   * Overrides Drupal\Core\Config\FileStorage::getFilePath().
+   * Overrides \Drupal\Core\Config\FileStorage::getFilePath().
    *
    * Returns the path to the configuration file.
    *
@@ -57,34 +57,34 @@ public function getFilePath($name) {
   }
 
   /**
-   * Overrides Drupal\Core\Config\FileStorage::write().
+   * 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.');
   }
 
   /**
-   * Overrides Drupal\Core\Config\FileStorage::delete().
+   * 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.');
   }
 
   /**
-   * Overrides Drupal\Core\Config\FileStorage::rename().
+   * 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.');
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::listAll().
+   * Implements \Drupal\Core\Config\StorageInterface::listAll().
    */
   public function listAll($prefix = '') {
     $names = array_keys($this->getAllFolders());
@@ -160,9 +160,9 @@ protected function getComponentFolder($type, $name) {
   }
 
   /**
-   * Overrides Drupal\Core\Config\FileStorage::deleteAll().
+   * 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/Config/NullStorage.php b/core/lib/Drupal/Core/Config/NullStorage.php
index 336c111..bfd3cf1 100644
--- a/core/lib/Drupal/Core/Config/NullStorage.php
+++ b/core/lib/Drupal/Core/Config/NullStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\NullStorage.
+ * Definition of \Drupal\Core\Config\NullStorage.
  */
 
 namespace Drupal\Core\Config;
@@ -24,63 +24,63 @@
 class NullStorage implements StorageInterface {
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::exists().
+   * Implements \Drupal\Core\Config\StorageInterface::exists().
    */
   public function exists($name) {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::read().
+   * Implements \Drupal\Core\Config\StorageInterface::read().
    */
   public function read($name) {
     return array();
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::write().
+   * Implements \Drupal\Core\Config\StorageInterface::write().
    */
   public function write($name, array $data) {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::delete().
+   * Implements \Drupal\Core\Config\StorageInterface::delete().
    */
   public function delete($name) {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::rename().
+   * Implements \Drupal\Core\Config\StorageInterface::rename().
    */
   public function rename($name, $new_name) {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::encode().
+   * Implements \Drupal\Core\Config\StorageInterface::encode().
    */
   public function encode($data) {
     return $data;
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::decode().
+   * Implements \Drupal\Core\Config\StorageInterface::decode().
    */
   public function decode($raw) {
     return $raw;
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::listAll().
+   * Implements \Drupal\Core\Config\StorageInterface::listAll().
    */
   public function listAll($prefix = '') {
     return array();
   }
 
   /**
-   * Implements Drupal\Core\Config\StorageInterface::deleteAll().
+   * Implements \Drupal\Core\Config\StorageInterface::deleteAll().
    */
   public function deleteAll($prefix = '') {
     return FALSE;
diff --git a/core/lib/Drupal/Core/Config/Schema/Mapping.php b/core/lib/Drupal/Core/Config/Schema/Mapping.php
index b7bddb3..57969bc 100644
--- a/core/lib/Drupal/Core/Config/Schema/Mapping.php
+++ b/core/lib/Drupal/Core/Config/Schema/Mapping.php
@@ -35,7 +35,7 @@ protected function parse() {
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::get().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::get().
    */
   public function get($property_name) {
     $elements = $this->getElements();
@@ -50,7 +50,7 @@ public function get($property_name) {
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::set().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::set().
    */
   public function set($property_name, $value, $notify = TRUE) {
     // Notify the parent of any changes to be made.
@@ -74,21 +74,21 @@ public function set($property_name, $value, $notify = TRUE) {
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::getProperties().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::getProperties().
    */
   public function getProperties($include_computed = FALSE) {
     return $this->getElements();
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::getPropertyValues().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::getPropertyValues().
    */
   public function getPropertyValues() {
     return $this->getValue();
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::setPropertyValues().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::setPropertyValues().
    */
   public function setPropertyValues($values) {
     foreach ($values as $name => $value) {
@@ -98,7 +98,7 @@ public function setPropertyValues($values) {
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::getPropertyDefinition().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::getPropertyDefinition().
    */
   public function getPropertyDefinition($name) {
     if (isset($this->definition['mapping'][$name])) {
@@ -110,7 +110,7 @@ public function getPropertyDefinition($name) {
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::getPropertyDefinitions().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::getPropertyDefinitions().
    */
   public function getPropertyDefinitions() {
     $list = array();
@@ -121,7 +121,7 @@ public function getPropertyDefinitions() {
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ComplexDataInterface::isEmpty().
+   * Implements \Drupal\Core\TypedData\ComplexDataInterface::isEmpty().
    */
   public function isEmpty() {
     return empty($this->value);
diff --git a/core/lib/Drupal/Core/Config/Schema/SchemaDiscovery.php b/core/lib/Drupal/Core/Config/Schema/SchemaDiscovery.php
index 51e684a..db8e240 100644
--- a/core/lib/Drupal/Core/Config/Schema/SchemaDiscovery.php
+++ b/core/lib/Drupal/Core/Config/Schema/SchemaDiscovery.php
@@ -19,7 +19,7 @@ class SchemaDiscovery implements DiscoveryInterface {
   /**
    * A storage controller instance for reading configuration schema data.
    *
-   * @var Drupal\Core\Config\StorageInterface
+   * @var \Drupal\Core\Config\StorageInterface
    */
   protected $storage;
 
@@ -33,7 +33,7 @@ class SchemaDiscovery implements DiscoveryInterface {
   /**
    * Public constructor.
    *
-   * @param Drupal\Core\Config\StorageInterface $storage
+   * @param \Drupal\Core\Config\StorageInterface $storage
    *   The storage controller object to use for reading schema data
    */
   public function __construct($storage) {
@@ -42,7 +42,7 @@ public function __construct($storage) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
    */
   public function getDefinition($base_plugin_id) {
     if (isset($this->definitions[$base_plugin_id])) {
@@ -70,7 +70,7 @@ public function getDefinition($base_plugin_id) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     return $this->definitions;
diff --git a/core/lib/Drupal/Core/Config/Schema/Sequence.php b/core/lib/Drupal/Core/Config/Schema/Sequence.php
index a399583..0fbc1d1 100644
--- a/core/lib/Drupal/Core/Config/Schema/Sequence.php
+++ b/core/lib/Drupal/Core/Config/Schema/Sequence.php
@@ -27,14 +27,14 @@ protected function parse() {
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ListInterface::isEmpty().
+   * Implements \Drupal\Core\TypedData\ListInterface::isEmpty().
    */
   public function isEmpty() {
     return empty($this->value);
   }
 
   /**
-   * Implements Drupal\Core\TypedData\ListInterface::getItemDefinition().
+   * Implements \Drupal\Core\TypedData\ListInterface::getItemDefinition().
    */
   public function getItemDefinition() {
     return $this->definition['sequence'][0];
diff --git a/core/lib/Drupal/Core/Config/StorageException.php b/core/lib/Drupal/Core/Config/StorageException.php
index b1e99a1..33e5519 100644
--- a/core/lib/Drupal/Core/Config/StorageException.php
+++ b/core/lib/Drupal/Core/Config/StorageException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\StorageException.
+ * Definition of \Drupal\Core\Config\StorageException.
  */
 
 namespace Drupal\Core\Config;
diff --git a/core/lib/Drupal/Core/Config/StorageInterface.php b/core/lib/Drupal/Core/Config/StorageInterface.php
index ceeecba..2e2fd97 100644
--- a/core/lib/Drupal/Core/Config/StorageInterface.php
+++ b/core/lib/Drupal/Core/Config/StorageInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Config\StorageInterface.
+ * Definition of \Drupal\Core\Config\StorageInterface.
  */
 
 namespace Drupal\Core\Config;
diff --git a/core/lib/Drupal/Core/Config/TypedConfigElementFactory.php b/core/lib/Drupal/Core/Config/TypedConfigElementFactory.php
index 7ff5129..d364004 100644
--- a/core/lib/Drupal/Core/Config/TypedConfigElementFactory.php
+++ b/core/lib/Drupal/Core/Config/TypedConfigElementFactory.php
@@ -18,7 +18,7 @@
 class TypedConfigElementFactory extends TypedDataFactory {
 
   /**
-   * Overrides Drupal\Core\TypedData\TypedDataFactory::createInstance().
+   * Overrides \Drupal\Core\TypedData\TypedDataFactory::createInstance().
    */
   public function createInstance($plugin_id, array $configuration, $name = NULL, $parent = NULL) {
     $type_definition = $this->discovery->getDefinition($plugin_id);
diff --git a/core/lib/Drupal/Core/ContentNegotiation.php b/core/lib/Drupal/Core/ContentNegotiation.php
index 500200c..1357440 100644
--- a/core/lib/Drupal/Core/ContentNegotiation.php
+++ b/core/lib/Drupal/Core/ContentNegotiation.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\ContentNegotiation.
+ * Definition of \Drupal\Core\ContentNegotiation.
  */
 
 namespace Drupal\Core;
diff --git a/core/lib/Drupal/Core/Controller/ExceptionController.php b/core/lib/Drupal/Core/Controller/ExceptionController.php
index c9a661b..7cd400f 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/CoreServiceProvider.php b/core/lib/Drupal/Core/CoreServiceProvider.php
index 310343e..2079193 100644
--- a/core/lib/Drupal/Core/CoreServiceProvider.php
+++ b/core/lib/Drupal/Core/CoreServiceProvider.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\CoreServiceProvider.
+ * Definition of \Drupal\Core\CoreServiceProvider.
  */
 
 namespace Drupal\Core;
diff --git a/core/lib/Drupal/Core/Database/Connection.php b/core/lib/Drupal/Core/Database/Connection.php
index ce7e04f..09e3cde 100644
--- a/core/lib/Drupal/Core/Database/Connection.php
+++ b/core/lib/Drupal/Core/Database/Connection.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Connection
+ * Definition of \Drupal\Core\Database\Connection
  */
 
 namespace Drupal\Core\Database;
@@ -330,7 +330,7 @@ public function tablePrefix($table = 'default') {
    *   The query string as SQL, with curly-braces surrounding the
    *   table names.
    *
-   * @return Drupal\Core\Database\StatementInterface
+   * @return \Drupal\Core\Database\StatementInterface
    *   A PDO prepared statement ready for its execute() method.
    */
   public function prepareQuery($query) {
@@ -666,7 +666,7 @@ public function getDriverClass($class) {
    *   it may be a driver-specific subclass of SelectQuery, depending on the
    *   driver.
    *
-   * @see Drupal\Core\Database\Query\Select
+   * @see \Drupal\Core\Database\Query\Select
    */
   public function select($table, $alias = NULL, array $options = array()) {
     $class = $this->getDriverClass('Select');
@@ -679,10 +679,10 @@ public function select($table, $alias = NULL, array $options = array()) {
    * @param $options
    *   An array of options on the query.
    *
-   * @return Drupal\Core\Database\Query\Insert
+   * @return \Drupal\Core\Database\Query\Insert
    *   A new Insert query object.
    *
-   * @see Drupal\Core\Database\Query\Insert
+   * @see \Drupal\Core\Database\Query\Insert
    */
   public function insert($table, array $options = array()) {
     $class = $this->getDriverClass('Insert');
@@ -695,10 +695,10 @@ public function insert($table, array $options = array()) {
    * @param $options
    *   An array of options on the query.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   A new Merge query object.
    *
-   * @see Drupal\Core\Database\Query\Merge
+   * @see \Drupal\Core\Database\Query\Merge
    */
   public function merge($table, array $options = array()) {
     $class = $this->getDriverClass('Merge');
@@ -712,10 +712,10 @@ public function merge($table, array $options = array()) {
    * @param $options
    *   An array of options on the query.
    *
-   * @return Drupal\Core\Database\Query\Update
+   * @return \Drupal\Core\Database\Query\Update
    *   A new Update query object.
    *
-   * @see Drupal\Core\Database\Query\Update
+   * @see \Drupal\Core\Database\Query\Update
    */
   public function update($table, array $options = array()) {
     $class = $this->getDriverClass('Update');
@@ -728,10 +728,10 @@ public function update($table, array $options = array()) {
    * @param $options
    *   An array of options on the query.
    *
-   * @return Drupal\Core\Database\Query\Delete
+   * @return \Drupal\Core\Database\Query\Delete
    *   A new Delete query object.
    *
-   * @see Drupal\Core\Database\Query\Delete
+   * @see \Drupal\Core\Database\Query\Delete
    */
   public function delete($table, array $options = array()) {
     $class = $this->getDriverClass('Delete');
@@ -744,10 +744,10 @@ public function delete($table, array $options = array()) {
    * @param $options
    *   An array of options on the query.
    *
-   * @return Drupal\Core\Database\Query\Truncate
+   * @return \Drupal\Core\Database\Query\Truncate
    *   A new Truncate query object.
    *
-   * @see Drupal\Core\Database\Query\Truncate
+   * @see \Drupal\Core\Database\Query\Truncate
    */
   public function truncate($table, array $options = array()) {
     $class = $this->getDriverClass('Truncate');
@@ -759,7 +759,7 @@ public function truncate($table, array $options = array()) {
    *
    * This method will lazy-load the appropriate schema library file.
    *
-   * @return Drupal\Core\Database\Schema
+   * @return \Drupal\Core\Database\Schema
    *   The database Schema object for this connection.
    */
   public function schema() {
@@ -844,7 +844,7 @@ public function escapeAlias($field) {
    * @endcode
    *
    * Backslash is defined as escape character for LIKE patterns in
-   * Drupal\Core\Database\Query\Condition::mapConditionOperator().
+   * \Drupal\Core\Database\Query\Condition::mapConditionOperator().
    *
    * @param $string
    *   The string to escape.
@@ -879,10 +879,10 @@ public function transactionDepth() {
    * @param $name
    *   Optional name of the savepoint.
    *
-   * @return Drupal\Core\Database\Transaction
+   * @return \Drupal\Core\Database\Transaction
    *   A DatabaseTransaction object.
    *
-   * @see Drupal\Core\Database\Transaction
+   * @see \Drupal\Core\Database\Transaction
    */
   public function startTransaction($name = '') {
     $class = $this->getDriverClass('Transaction');
@@ -898,7 +898,7 @@ public function startTransaction($name = '') {
    *   The name of the savepoint. The default, 'drupal_transaction', will roll
    *   the entire transaction back.
    *
-   * @throws Drupal\Core\Database\TransactionNoActiveException
+   * @throws \Drupal\Core\Database\TransactionNoActiveException
    *
    * @see DatabaseTransaction::rollback()
    */
@@ -949,9 +949,9 @@ public function rollback($savepoint_name = 'drupal_transaction') {
    *
    * If no transaction is already active, we begin a new transaction.
    *
-   * @throws Drupal\Core\Database\TransactionNameNonUniqueException
+   * @throws \Drupal\Core\Database\TransactionNameNonUniqueException
    *
-   * @see Drupal\Core\Database\Transaction
+   * @see \Drupal\Core\Database\Transaction
    */
   public function pushTransaction($name) {
     if (!$this->supportsTransactions()) {
@@ -981,8 +981,8 @@ public function pushTransaction($name) {
    * @param $name
    *   The name of the savepoint
    *
-   * @throws Drupal\Core\Database\TransactionNoActiveException
-   * @throws Drupal\Core\Database\TransactionCommitFailedException
+   * @throws \Drupal\Core\Database\TransactionNoActiveException
+   * @throws \Drupal\Core\Database\TransactionCommitFailedException
    *
    * @see DatabaseTransaction
    */
@@ -1046,7 +1046,7 @@ protected function popCommittableTransactions() {
    * @param $options
    *   An array of options on the query.
    *
-   * @return Drupal\Core\Database\StatementInterface
+   * @return \Drupal\Core\Database\StatementInterface
    *   A database query result resource, or NULL if the query was not executed
    *   correctly.
    */
@@ -1157,7 +1157,7 @@ public function supportsTransactionalDDL() {
    * @return
    *   The extra handling directives for the specified operator, or NULL.
    *
-   * @see Drupal\Core\Database\Query\Condition::compile()
+   * @see \Drupal\Core\Database\Query\Condition::compile()
    */
   abstract public function mapConditionOperator($operator);
 
@@ -1169,9 +1169,9 @@ public function supportsTransactionalDDL() {
    * A direct commit bypasses all of the safety checks we've built on top of
    * PDO's transaction routines.
    *
-   * @throws Drupal\Core\Database\TransactionExplicitCommitNotAllowedException
+   * @throws \Drupal\Core\Database\TransactionExplicitCommitNotAllowedException
    *
-   * @see Drupal\Core\Database\Transaction
+   * @see \Drupal\Core\Database\Transaction
    */
   public function commit() {
     throw new TransactionExplicitCommitNotAllowedException();
diff --git a/core/lib/Drupal/Core/Database/ConnectionNotDefinedException.php b/core/lib/Drupal/Core/Database/ConnectionNotDefinedException.php
index d145358..fe139d5 100644
--- a/core/lib/Drupal/Core/Database/ConnectionNotDefinedException.php
+++ b/core/lib/Drupal/Core/Database/ConnectionNotDefinedException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\ConnectionNotDefinedException
+ * Definition of \Drupal\Core\Database\ConnectionNotDefinedException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/Database.php b/core/lib/Drupal/Core/Database/Database.php
index d6c28ca..568ad64 100644
--- a/core/lib/Drupal/Core/Database/Database.php
+++ b/core/lib/Drupal/Core/Database/Database.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Database
+ * Definition of \Drupal\Core\Database\Database
  */
 
 namespace Drupal\Core\Database;
@@ -90,12 +90,12 @@
    * @param $key
    *   The database connection key for which we want to log.
    *
-   * @return Drupal\Core\Database\Log
+   * @return \Drupal\Core\Database\Log
    *   The query log object. Note that the log object does support richer
    *   methods than the few exposed through the Database class, so in some
    *   cases it may be desirable to access it directly.
    *
-   * @see Drupal\Core\Database\Log
+   * @see \Drupal\Core\Database\Log
    */
   final public static function startLog($logging_key, $key = 'default') {
     if (empty(self::$logs[$key])) {
@@ -130,7 +130,7 @@
    * @return array
    *   The query log for the specified logging key and connection.
    *
-   * @see Drupal\Core\Database\Log
+   * @see \Drupal\Core\Database\Log
    */
   final public static function getLog($logging_key, $key = 'default') {
     if (empty(self::$logs[$key])) {
@@ -149,7 +149,7 @@
    * @param $key
    *   The database connection key. Defaults to NULL which means the active key.
    *
-   * @return Drupal\Core\Database\Connection
+   * @return \Drupal\Core\Database\Connection
    *   The corresponding connection object.
    */
   final public static function getConnection($target = 'default', $key = NULL) {
@@ -356,8 +356,8 @@ public static function addConnectionInfo($key, $target, $info) {
    * @param $target
    *   The database target to open.
    *
-   * @throws Drupal\Core\Database\ConnectionNotDefinedException
-   * @throws Drupal\Core\Database\DriverNotSpecifiedException
+   * @throws \Drupal\Core\Database\ConnectionNotDefinedException
+   * @throws \Drupal\Core\Database\DriverNotSpecifiedException
    */
   final protected static function openConnection($key, $target) {
     if (empty(self::$databaseInfo)) {
diff --git a/core/lib/Drupal/Core/Database/DatabaseException.php b/core/lib/Drupal/Core/Database/DatabaseException.php
index 019d656..ec05b5c 100644
--- a/core/lib/Drupal/Core/Database/DatabaseException.php
+++ b/core/lib/Drupal/Core/Database/DatabaseException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\DatabaseException
+ * Definition of \Drupal\Core\Database\DatabaseException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/DatabaseExceptionWrapper.php b/core/lib/Drupal/Core/Database/DatabaseExceptionWrapper.php
index b212478..320b8ed 100644
--- a/core/lib/Drupal/Core/Database/DatabaseExceptionWrapper.php
+++ b/core/lib/Drupal/Core/Database/DatabaseExceptionWrapper.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\DatabaseExceptionWrapper.
+ * Definition of \Drupal\Core\Database\DatabaseExceptionWrapper.
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/DatabaseNotFoundException.php b/core/lib/Drupal/Core/Database/DatabaseNotFoundException.php
index fa1327f..65d1104 100644
--- a/core/lib/Drupal/Core/Database/DatabaseNotFoundException.php
+++ b/core/lib/Drupal/Core/Database/DatabaseNotFoundException.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Contains Drupal\Core\Database\DatabaseNotFoundException.
+ * Contains \Drupal\Core\Database\DatabaseNotFoundException.
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php b/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
index 92142e8..7ff6c97 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Connection.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Connection
+ * Definition of \Drupal\Core\Database\Driver\mysql\Connection
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Delete.php b/core/lib/Drupal/Core/Database/Driver/mysql/Delete.php
index de0db11..42338d9 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Delete.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Delete.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Delete
+ * Definition of \Drupal\Core\Database\Driver\mysql\Delete
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Insert.php b/core/lib/Drupal/Core/Database/Driver/mysql/Insert.php
index 233118c..f0bb0e5 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Insert.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Insert.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Insert
+ * Definition of \Drupal\Core\Database\Driver\mysql\Insert
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php
index e4ecd99..6bc1699 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Install/Tasks.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Install\Tasks
+ * Definition of \Drupal\Core\Database\Driver\mysql\Install\Tasks
  */
 
 namespace Drupal\Core\Database\Driver\mysql\Install;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Merge.php b/core/lib/Drupal/Core/Database/Driver/mysql/Merge.php
index c48b830..4883519 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Merge.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Merge.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Merge
+ * Definition of \Drupal\Core\Database\Driver\mysql\Merge
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php b/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
index 5788bef..1701701 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Schema.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Schema
+ * Definition of \Drupal\Core\Database\Driver\mysql\Schema
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Select.php b/core/lib/Drupal/Core/Database/Driver/mysql/Select.php
index aecae55..9365087 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Select.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Select.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Select
+ * Definition of \Drupal\Core\Database\Driver\mysql\Select
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Transaction.php b/core/lib/Drupal/Core/Database/Driver/mysql/Transaction.php
index 570a130..50ad00e 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Transaction.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Transaction.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Transaction
+ * Definition of \Drupal\Core\Database\Driver\mysql\Transaction
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php b/core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
index c7d7a36..412052d 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Truncate.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Truncate
+ * Definition of \Drupal\Core\Database\Driver\mysql\Truncate
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/mysql/Update.php b/core/lib/Drupal/Core/Database/Driver/mysql/Update.php
index 5b3bda6..3551de5 100644
--- a/core/lib/Drupal/Core/Database/Driver/mysql/Update.php
+++ b/core/lib/Drupal/Core/Database/Driver/mysql/Update.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\mysql\Update
+ * Definition of \Drupal\Core\Database\Driver\mysql\Update
  */
 
 namespace Drupal\Core\Database\Driver\mysql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
index 30e9e01..17aaf2c 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Connection.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Connection
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Connection
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Delete.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Delete.php
index e9914ca..f8e0a82 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Delete.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Delete.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Delete
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Delete
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php
index dffa1fd..65d7014 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Insert.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Insert
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Insert
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php
index bb30901..4be0b64 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Install/Tasks.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Install\Tasks
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Install\Tasks
  */
 
 namespace Drupal\Core\Database\Driver\pgsql\Install;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Merge.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Merge.php
index c3a2ae0..af06bcc 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Merge.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Merge.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Merge
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Merge
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
index e2798e1..ea4b738 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Schema.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Schema
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Schema
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Select.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Select.php
index bf9f23a..7b42c06 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Select.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Select.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Select
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Select
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Transaction.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Transaction.php
index 8c3f701..5ada9db 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Transaction.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Transaction.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Transaction
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Transaction
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
index e2fa83d..1fa359d 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Truncate.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Truncate
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Truncate
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/pgsql/Update.php b/core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
index de738bf..e37b0a9 100644
--- a/core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
+++ b/core/lib/Drupal/Core/Database/Driver/pgsql/Update.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\pgsql\Update
+ * Definition of \Drupal\Core\Database\Driver\pgsql\Update
  */
 
 namespace Drupal\Core\Database\Driver\pgsql;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
index 768b8ca..2915a28 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Connection
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Connection
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Delete.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Delete.php
index c0056cb..c1d9008 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Delete.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Delete.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Delete
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Delete
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Insert.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Insert.php
index e584943..7d82bb1 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Insert.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Insert.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Insert
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Insert
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
index 1079688..d475127 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Install/Tasks.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Install\Tasks
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Install\Tasks
  */
 
 namespace Drupal\Core\Database\Driver\sqlite\Install;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Merge.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Merge.php
index 3bbc3de..36dbe6d 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Merge.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Merge.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Merge
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Merge
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
index f8050cd..c827ac4 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Schema.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Schema
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Schema
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php
index 5403611..ae1ac8a 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Select.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Select
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Select
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php
index b21d448..51c6b19 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Statement.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Statement
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Statement
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Transaction.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Transaction.php
index ae73ed8..361714b 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Transaction.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Transaction.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Transaction
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Transaction
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
index d06d27e..c83391c 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Truncate.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Truncate
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Truncate
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/Driver/sqlite/Update.php b/core/lib/Drupal/Core/Database/Driver/sqlite/Update.php
index fa7d54b..0e75f80 100644
--- a/core/lib/Drupal/Core/Database/Driver/sqlite/Update.php
+++ b/core/lib/Drupal/Core/Database/Driver/sqlite/Update.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Driver\sqlite\Update
+ * Definition of \Drupal\Core\Database\Driver\sqlite\Update
  */
 
 namespace Drupal\Core\Database\Driver\sqlite;
diff --git a/core/lib/Drupal/Core/Database/DriverNotSpecifiedException.php b/core/lib/Drupal/Core/Database/DriverNotSpecifiedException.php
index 9463931..179e3b3 100644
--- a/core/lib/Drupal/Core/Database/DriverNotSpecifiedException.php
+++ b/core/lib/Drupal/Core/Database/DriverNotSpecifiedException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\DriverNotSpecifiedException
+ * Definition of \Drupal\Core\Database\DriverNotSpecifiedException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/Install/TaskException.php b/core/lib/Drupal/Core/Database/Install/TaskException.php
index d93b736..b93032d 100644
--- a/core/lib/Drupal/Core/Database/Install/TaskException.php
+++ b/core/lib/Drupal/Core/Database/Install/TaskException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Install\TaskException
+ * Definition of \Drupal\Core\Database\Install\TaskException
  */
 
 namespace Drupal\Core\Database\Install;
diff --git a/core/lib/Drupal/Core/Database/Install/Tasks.php b/core/lib/Drupal/Core/Database/Install/Tasks.php
index d46251b..01f892d 100644
--- a/core/lib/Drupal/Core/Database/Install/Tasks.php
+++ b/core/lib/Drupal/Core/Database/Install/Tasks.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Install\Tasks
+ * Definition of \Drupal\Core\Database\Install\Tasks
  */
 
 namespace Drupal\Core\Database\Install;
diff --git a/core/lib/Drupal/Core/Database/IntegrityConstraintViolationException.php b/core/lib/Drupal/Core/Database/IntegrityConstraintViolationException.php
index 7b8ac43..db03fab 100644
--- a/core/lib/Drupal/Core/Database/IntegrityConstraintViolationException.php
+++ b/core/lib/Drupal/Core/Database/IntegrityConstraintViolationException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\IntegrityConstraintViolationException
+ * Definition of \Drupal\Core\Database\IntegrityConstraintViolationException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/Log.php b/core/lib/Drupal/Core/Database/Log.php
index 14f5a38..3067e54 100644
--- a/core/lib/Drupal/Core/Database/Log.php
+++ b/core/lib/Drupal/Core/Database/Log.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Log
+ * Definition of \Drupal\Core\Database\Log
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/Query/AlterableInterface.php b/core/lib/Drupal/Core/Database/Query/AlterableInterface.php
index 66a41e2..ad482a2 100644
--- a/core/lib/Drupal/Core/Database/Query/AlterableInterface.php
+++ b/core/lib/Drupal/Core/Database/Query/AlterableInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\AlterableInterface
+ * Definition of \Drupal\Core\Database\Query\AlterableInterface
  */
 
 namespace Drupal\Core\Database\Query;
@@ -24,7 +24,7 @@
    * @param $tag
    *   The tag to add.
    *
-   * @return Drupal\Core\Database\Query\AlterableInterface
+   * @return \Drupal\Core\Database\Query\AlterableInterface
    *   The called object.
    */
   public function addTag($tag);
@@ -77,7 +77,7 @@ public function hasAnyTag();
    * @param $object
    *   The additional data to add to the query. May be any valid PHP variable.
    *
-   * @return Drupal\Core\Database\Query\AlterableInterface
+   * @return \Drupal\Core\Database\Query\AlterableInterface
    *   The called object.
    */
   public function addMetaData($key, $object);
diff --git a/core/lib/Drupal/Core/Database/Query/Condition.php b/core/lib/Drupal/Core/Database/Query/Condition.php
index c23ad76..23a3e2a 100644
--- a/core/lib/Drupal/Core/Database/Query/Condition.php
+++ b/core/lib/Drupal/Core/Database/Query/Condition.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Condition
+ * Definition of \Drupal\Core\Database\Query\Condition
  */
 
 namespace Drupal\Core\Database\Query;
@@ -67,7 +67,7 @@ public function count() {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::condition().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::condition().
    */
   public function condition($field, $value = NULL, $operator = NULL) {
     if (!isset($operator)) {
@@ -90,7 +90,7 @@ public function condition($field, $value = NULL, $operator = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::where().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::where().
    */
   public function where($snippet, $args = array()) {
     $this->conditions[] = array(
@@ -104,42 +104,42 @@ public function where($snippet, $args = array()) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNull().
    */
   public function isNull($field) {
     return $this->condition($field, NULL, 'IS NULL');
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNotNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNotNull().
    */
   public function isNotNull($field) {
     return $this->condition($field, NULL, 'IS NOT NULL');
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::exists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::exists().
    */
   public function exists(SelectInterface $select) {
     return $this->condition('', $select, 'EXISTS');
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::notExists().
    */
   public function notExists(SelectInterface $select) {
     return $this->condition('', $select, 'NOT EXISTS');
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::conditions().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::conditions().
    */
   public function &conditions() {
     return $this->conditions;
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::arguments().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::arguments().
    */
   public function arguments() {
     // If the caller forgot to call compile() first, refuse to run.
@@ -150,7 +150,7 @@ public function arguments() {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compile().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compile().
    */
   public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
     // Re-compile if this condition changed or if we are compiled against a
@@ -230,7 +230,7 @@ public function compile(Connection $connection, PlaceholderInterface $queryPlace
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compiled().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compiled().
    */
   public function compiled() {
     return !$this->changed;
@@ -253,7 +253,7 @@ public function __toString() {
   /**
    * PHP magic __clone() method.
    *
-   * Only copies fields that implement Drupal\Core\Database\Query\ConditionInterface. Also sets
+   * Only copies fields that implement \Drupal\Core\Database\Query\ConditionInterface. Also sets
    * $this->changed to TRUE.
    */
   function __clone() {
diff --git a/core/lib/Drupal/Core/Database/Query/ConditionInterface.php b/core/lib/Drupal/Core/Database/Query/ConditionInterface.php
index 70c23c7..a482a7f 100644
--- a/core/lib/Drupal/Core/Database/Query/ConditionInterface.php
+++ b/core/lib/Drupal/Core/Database/Query/ConditionInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\ConditionInterface
+ * Definition of \Drupal\Core\Database\Query\ConditionInterface
  */
 
 namespace Drupal\Core\Database\Query;
@@ -39,8 +39,8 @@
    * @return QueryConditionInterface
    *   The called object.
    *
-   * @see Drupal\Core\Database\Query\ConditionInterface::isNull()
-   * @see Drupal\Core\Database\Query\ConditionInterface::isNotNull()
+   * @see \Drupal\Core\Database\Query\ConditionInterface::isNull()
+   * @see \Drupal\Core\Database\Query\ConditionInterface::isNotNull()
    */
   public function condition($field, $value = NULL, $operator = NULL);
 
@@ -53,7 +53,7 @@ public function condition($field, $value = NULL, $operator = NULL);
    * @param $args
    *   An associative array of arguments.
    *
-   * @return Drupal\Core\Database\Query\ConditionInterface
+   * @return \Drupal\Core\Database\Query\ConditionInterface
    *   The called object.
    */
   public function where($snippet, $args = array());
@@ -64,7 +64,7 @@ public function where($snippet, $args = array());
    * @param $field
    *   The name of the field to check.
    *
-   * @return Drupal\Core\Database\Query\ConditionInterface
+   * @return \Drupal\Core\Database\Query\ConditionInterface
    *   The called object.
    */
   public function isNull($field);
@@ -75,7 +75,7 @@ public function isNull($field);
    * @param $field
    *   The name of the field to check.
    *
-   * @return Drupal\Core\Database\Query\ConditionInterface
+   * @return \Drupal\Core\Database\Query\ConditionInterface
    *   The called object.
    */
   public function isNotNull($field);
@@ -83,10 +83,10 @@ public function isNotNull($field);
   /**
    * Sets a condition that the specified subquery returns values.
    *
-   * @param Drupal\Core\Database\Query\SelectInterface $select
+   * @param \Drupal\Core\Database\Query\SelectInterface $select
    *   The subquery that must contain results.
    *
-   * @return Drupal\Core\Database\Query\ConditionInterface
+   * @return \Drupal\Core\Database\Query\ConditionInterface
    *   The called object.
    */
   public function exists(SelectInterface $select);
@@ -94,10 +94,10 @@ public function exists(SelectInterface $select);
   /**
    * Sets a condition that the specified subquery returns no values.
    *
-   * @param Drupal\Core\Database\Query\SelectInterface $select
+   * @param \Drupal\Core\Database\Query\SelectInterface $select
    *   The subquery that must not contain results.
    *
-   * @return Drupal\Core\Database\Query\ConditionInterface
+   * @return \Drupal\Core\Database\Query\ConditionInterface
    *   The called object.
    */
   public function notExists(SelectInterface $select);
diff --git a/core/lib/Drupal/Core/Database/Query/Delete.php b/core/lib/Drupal/Core/Database/Query/Delete.php
index 3ecd040..835b97e 100644
--- a/core/lib/Drupal/Core/Database/Query/Delete.php
+++ b/core/lib/Drupal/Core/Database/Query/Delete.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Delete
+ * Definition of \Drupal\Core\Database\Query\Delete
  */
 
 namespace Drupal\Core\Database\Query;
@@ -34,7 +34,7 @@ class Delete extends Query implements ConditionInterface {
   /**
    * Constructs a Delete object.
    *
-   * @param Drupal\Core\Database\Connection $connection
+   * @param \Drupal\Core\Database\Connection $connection
    *   A DatabaseConnection object.
    * @param string $table
    *   Name of the table to associate with this query.
@@ -50,7 +50,7 @@ public function __construct(Connection $connection, $table, array $options = arr
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::condition().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::condition().
    */
   public function condition($field, $value = NULL, $operator = NULL) {
     $this->condition->condition($field, $value, $operator);
@@ -58,7 +58,7 @@ public function condition($field, $value = NULL, $operator = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNull().
    */
   public function isNull($field) {
     $this->condition->isNull($field);
@@ -66,7 +66,7 @@ public function isNull($field) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNotNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNotNull().
    */
   public function isNotNull($field) {
     $this->condition->isNotNull($field);
@@ -74,7 +74,7 @@ public function isNotNull($field) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::exists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::exists().
    */
   public function exists(SelectInterface $select) {
     $this->condition->exists($select);
@@ -82,7 +82,7 @@ public function exists(SelectInterface $select) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::notExists().
    */
   public function notExists(SelectInterface $select) {
     $this->condition->notExists($select);
@@ -90,21 +90,21 @@ public function notExists(SelectInterface $select) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::conditions().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::conditions().
    */
   public function &conditions() {
     return $this->condition->conditions();
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::arguments().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::arguments().
    */
   public function arguments() {
     return $this->condition->arguments();
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::where().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::where().
    */
   public function where($snippet, $args = array()) {
     $this->condition->where($snippet, $args);
@@ -112,14 +112,14 @@ public function where($snippet, $args = array()) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compile().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compile().
    */
   public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
     return $this->condition->compile($connection, $queryPlaceholder);
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compiled().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compiled().
    */
   public function compiled() {
     return $this->condition->compiled();
diff --git a/core/lib/Drupal/Core/Database/Query/ExtendableInterface.php b/core/lib/Drupal/Core/Database/Query/ExtendableInterface.php
index 01dcc90..961c5c7 100644
--- a/core/lib/Drupal/Core/Database/Query/ExtendableInterface.php
+++ b/core/lib/Drupal/Core/Database/Query/ExtendableInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\ExtendableInterface
+ * Definition of \Drupal\Core\Database\Query\ExtendableInterface
  */
 
 namespace Drupal\Core\Database\Query;
@@ -26,7 +26,7 @@
    *   The base name of the extending class.  The base name will be checked
    *   against the current database connection to allow driver-specific subclasses
    *   as well, using the same logic as the query objects themselves.
-   * @return Drupal\Core\Database\Query\ExtendableInterface
+   * @return \Drupal\Core\Database\Query\ExtendableInterface
    *   The extender object, which now contains a reference to this object.
    */
   public function extend($extender_name);
diff --git a/core/lib/Drupal/Core/Database/Query/FieldsOverlapException.php b/core/lib/Drupal/Core/Database/Query/FieldsOverlapException.php
index f9d9372..a3f6f43 100644
--- a/core/lib/Drupal/Core/Database/Query/FieldsOverlapException.php
+++ b/core/lib/Drupal/Core/Database/Query/FieldsOverlapException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\FieldsOverlapExceptoin
+ * Definition of \Drupal\Core\Database\Query\FieldsOverlapExceptoin
  */
 
 namespace Drupal\Core\Database\Query;
diff --git a/core/lib/Drupal/Core/Database/Query/Insert.php b/core/lib/Drupal/Core/Database/Query/Insert.php
index 7862436..89b1fbb 100644
--- a/core/lib/Drupal/Core/Database/Query/Insert.php
+++ b/core/lib/Drupal/Core/Database/Query/Insert.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Insert
+ * Definition of \Drupal\Core\Database\Query\Insert
  */
 
 namespace Drupal\Core\Database\Query;
@@ -62,7 +62,7 @@ class Insert extends Query {
   /**
    * Constructs an Insert object.
    *
-   * @param Drupal\Core\Database\Connection $connection
+   * @param \Drupal\Core\Database\Connection $connection
    *   A DatabaseConnection object.
    * @param string $table
    *   Name of the table to associate with this query.
@@ -94,7 +94,7 @@ public function __construct($connection, $table, array $options = array()) {
    *   An array of fields to insert into the database. The values must be
    *   specified in the same order as the $fields array.
    *
-   * @return Drupal\Core\Database\Query\Insert
+   * @return \Drupal\Core\Database\Query\Insert
    *   The called object.
    */
   public function fields(array $fields, array $values = array()) {
@@ -125,7 +125,7 @@ public function fields(array $fields, array $values = array()) {
    * @param $values
    *   An array of values to add to the query.
    *
-   * @return Drupal\Core\Database\Query\Insert
+   * @return \Drupal\Core\Database\Query\Insert
    *   The called object.
    */
   public function values(array $values) {
@@ -159,7 +159,7 @@ public function values(array $values) {
    *   An array of values for which to use the default values
    *   specified in the table definition.
    *
-   * @return Drupal\Core\Database\Query\Insert
+   * @return \Drupal\Core\Database\Query\Insert
    *   The called object.
    */
   public function useDefaults(array $fields) {
@@ -266,8 +266,8 @@ public function __toString() {
    * @return
    *   TRUE if the validation was successful, FALSE if not.
    *
-   * @throws Drupal\Core\Database\Query\FieldsOverlapException
-   * @throws Drupal\Core\Database\Query\NoFieldsException
+   * @throws \Drupal\Core\Database\Query\FieldsOverlapException
+   * @throws \Drupal\Core\Database\Query\NoFieldsException
    */
   public function preExecute() {
     // Confirm that the user did not try to specify an identical
diff --git a/core/lib/Drupal/Core/Database/Query/InvalidMergeQueryException.php b/core/lib/Drupal/Core/Database/Query/InvalidMergeQueryException.php
index 59ad1c9..d245c49 100644
--- a/core/lib/Drupal/Core/Database/Query/InvalidMergeQueryException.php
+++ b/core/lib/Drupal/Core/Database/Query/InvalidMergeQueryException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\InvalidMergeQueryException
+ * Definition of \Drupal\Core\Database\Query\InvalidMergeQueryException
  */
 
 namespace Drupal\Core\Database\Query;
diff --git a/core/lib/Drupal/Core/Database/Query/Merge.php b/core/lib/Drupal/Core/Database/Query/Merge.php
index 0bff74c..0fea4e1 100644
--- a/core/lib/Drupal/Core/Database/Query/Merge.php
+++ b/core/lib/Drupal/Core/Database/Query/Merge.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Merge
+ * Definition of \Drupal\Core\Database\Query\Merge
  */
 
 namespace Drupal\Core\Database\Query;
@@ -126,8 +126,8 @@ class Merge extends Query implements ConditionInterface {
   /**
   * Constructs a Merge object.
   *
-  * @param Drupal\Core\Database\Connection $connection
-  *   A Drupal\Core\Database\Connection object.
+  * @param \Drupal\Core\Database\Connection $connection
+  *   A \Drupal\Core\Database\Connection object.
   * @param string $table
   *   Name of the table to associate with this query.
   * @param array $options
@@ -148,7 +148,7 @@ public function __construct(Connection $connection, $table, array $options = arr
    *   The table name or the subquery to be used. Use a Select query object to
    *   pass in a subquery.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   The called object.
    */
   protected function conditionTable($table) {
@@ -163,7 +163,7 @@ protected function conditionTable($table) {
    *   An associative array of fields to write into the database. The array keys
    *   are the field names and the values are the values to which to set them.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   The called object.
    */
   public function updateFields(array $fields) {
@@ -188,7 +188,7 @@ public function updateFields(array $fields) {
    *   If specified, this is an array of key/value pairs for named placeholders
    *   corresponding to the expression.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   The called object.
    */
   public function expression($field, $expression, array $arguments = NULL) {
@@ -213,7 +213,7 @@ public function expression($field, $expression, array $arguments = NULL) {
    *   An array of fields to insert into the database. The values must be
    *   specified in the same order as the $fields array.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   The called object.
    */
   public function insertFields(array $fields, array $values = array()) {
@@ -240,7 +240,7 @@ public function insertFields(array $fields, array $values = array()) {
    *   An array of values for which to use the default values
    *   specified in the table definition.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   The called object.
    */
   public function useDefaults(array $fields) {
@@ -266,7 +266,7 @@ public function useDefaults(array $fields) {
    *   An array of values to set into the database. The values must be
    *   specified in the same order as the $fields array.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   The called object.
    */
   public function fields(array $fields, array $values = array()) {
@@ -300,7 +300,7 @@ public function fields(array $fields, array $values = array()) {
    *   An array of values to set into the database. The values must be
    *   specified in the same order as the $fields array.
    *
-   * @return Drupal\Core\Database\Query\Merge
+   * @return \Drupal\Core\Database\Query\Merge
    *   The called object.
    */
   public function key(array $fields, array $values = array()) {
@@ -315,7 +315,7 @@ public function key(array $fields, array $values = array()) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::condition().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::condition().
    */
   public function condition($field, $value = NULL, $operator = NULL) {
     $this->condition->condition($field, $value, $operator);
@@ -323,7 +323,7 @@ public function condition($field, $value = NULL, $operator = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNull().
    */
   public function isNull($field) {
     $this->condition->isNull($field);
@@ -331,7 +331,7 @@ public function isNull($field) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNotNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNotNull().
    */
   public function isNotNull($field) {
     $this->condition->isNotNull($field);
@@ -339,7 +339,7 @@ public function isNotNull($field) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::exists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::exists().
    */
   public function exists(SelectInterface $select) {
     $this->condition->exists($select);
@@ -347,7 +347,7 @@ public function exists(SelectInterface $select) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::notExists().
    */
   public function notExists(SelectInterface $select) {
     $this->condition->notExists($select);
@@ -355,21 +355,21 @@ public function notExists(SelectInterface $select) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::conditions().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::conditions().
    */
   public function &conditions() {
     return $this->condition->conditions();
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::arguments().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::arguments().
    */
   public function arguments() {
     return $this->condition->arguments();
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::where().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::where().
    */
   public function where($snippet, $args = array()) {
     $this->condition->where($snippet, $args);
@@ -377,14 +377,14 @@ public function where($snippet, $args = array()) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compile().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compile().
    */
   public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
     return $this->condition->compile($connection, $queryPlaceholder);
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compiled().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compiled().
    */
   public function compiled() {
     return $this->condition->compiled();
diff --git a/core/lib/Drupal/Core/Database/Query/NoFieldsException.php b/core/lib/Drupal/Core/Database/Query/NoFieldsException.php
index 18851fd..24d2bce 100644
--- a/core/lib/Drupal/Core/Database/Query/NoFieldsException.php
+++ b/core/lib/Drupal/Core/Database/Query/NoFieldsException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\NoFieldsException
+ * Definition of \Drupal\Core\Database\Query\NoFieldsException
  */
 
 namespace Drupal\Core\Database\Query;
diff --git a/core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php b/core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php
index 0668fa5..592041f 100644
--- a/core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php
+++ b/core/lib/Drupal/Core/Database/Query/PagerSelectExtender.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\PagerSelectExtender
+ * Definition of \Drupal\Core\Database\Query\PagerSelectExtender
  */
 
 namespace Drupal\Core\Database\Query;
diff --git a/core/lib/Drupal/Core/Database/Query/PlaceholderInterface.php b/core/lib/Drupal/Core/Database/Query/PlaceholderInterface.php
index 68b802e..edf6bd5 100644
--- a/core/lib/Drupal/Core/Database/Query/PlaceholderInterface.php
+++ b/core/lib/Drupal/Core/Database/Query/PlaceholderInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\PlaceholderInterface
+ * Definition of \Drupal\Core\Database\Query\PlaceholderInterface
  */
 
 namespace Drupal\Core\Database\Query;
diff --git a/core/lib/Drupal/Core/Database/Query/Query.php b/core/lib/Drupal/Core/Database/Query/Query.php
index 95ab4b9..aedd975 100644
--- a/core/lib/Drupal/Core/Database/Query/Query.php
+++ b/core/lib/Drupal/Core/Database/Query/Query.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Query
+ * Definition of \Drupal\Core\Database\Query\Query
  */
 
 namespace Drupal\Core\Database\Query;
@@ -21,7 +21,7 @@
   /**
    * The connection object on which to run this query.
    *
-   * @var Drupal\Core\Database\Connection
+   * @var \Drupal\Core\Database\Connection
    */
   protected $connection;
 
@@ -66,7 +66,7 @@
   /**
    * Constructs a Query object.
    *
-   * @param Drupal\Core\Database\Connection $connection
+   * @param \Drupal\Core\Database\Connection $connection
    *   Database connection object.
    * @param array $options
    *   Array of query options.
@@ -151,7 +151,7 @@ public function nextPlaceholder() {
    * @param $comment
    *   The comment string to be inserted into the query.
    *
-   * @return Drupal\Core\Database\Query\Query
+   * @return \Drupal\Core\Database\Query\Query
    *   The called object.
    */
   public function comment($comment) {
diff --git a/core/lib/Drupal/Core/Database/Query/Select.php b/core/lib/Drupal/Core/Database/Query/Select.php
index e5eeaf2..2585b30 100644
--- a/core/lib/Drupal/Core/Database/Query/Select.php
+++ b/core/lib/Drupal/Core/Database/Query/Select.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Select
+ * Definition of \Drupal\Core\Database\Query\Select
  */
 
 namespace Drupal\Core\Database\Query;
@@ -72,14 +72,14 @@ class Select extends Query implements SelectInterface {
   /**
    * The conditional object for the WHERE clause.
    *
-   * @var Drupal\Core\Database\Query\Condition
+   * @var \Drupal\Core\Database\Query\Condition
    */
   protected $where;
 
   /**
    * The conditional object for the HAVING clause.
    *
-   * @var Drupal\Core\Database\Query\Condition
+   * @var \Drupal\Core\Database\Query\Condition
    */
   protected $having;
 
@@ -130,7 +130,7 @@ public function __construct($table, $alias = NULL, Connection $connection, $opti
     $this->addJoin(NULL, $table, $alias);
   }
 
-  /* Implementations of Drupal\Core\Database\Query\AlterableInterface. */
+  /* Implementations of \Drupal\Core\Database\Query\AlterableInterface. */
 
   public function addTag($tag) {
     $this->alterTags[$tag] = 1;
@@ -158,7 +158,7 @@ public function getMetaData($key) {
     return isset($this->alterMetaData[$key]) ? $this->alterMetaData[$key] : NULL;
   }
 
-  /* Implementations of Drupal\Core\Database\Query\ConditionInterface for the WHERE clause. */
+  /* Implementations of \Drupal\Core\Database\Query\ConditionInterface for the WHERE clause. */
 
   public function condition($field, $value = NULL, $operator = NULL) {
     $this->where->condition($field, $value, $operator);
@@ -266,7 +266,7 @@ public function compiled() {
     return TRUE;
   }
 
-  /* Implementations of Drupal\Core\Database\Query\ConditionInterface for the HAVING clause. */
+  /* Implementations of \Drupal\Core\Database\Query\ConditionInterface for the HAVING clause. */
 
   public function havingCondition($field, $value = NULL, $operator = NULL) {
     $this->having->condition($field, $value, $operator);
@@ -290,7 +290,7 @@ public function havingCompile(Connection $connection) {
     return $this->having->compile($connection, $this);
   }
 
-  /* Implementations of Drupal\Core\Database\Query\ExtendableInterface. */
+  /* Implementations of \Drupal\Core\Database\Query\ExtendableInterface. */
 
   public function extend($extender_name) {
     $override_class = $extender_name . '_' . $this->connection->driver();
@@ -598,7 +598,7 @@ public function countQuery() {
   /**
    * Prepares a count query from the current query object.
    *
-   * @return Drupal\Core\Database\Query\Select
+   * @return \Drupal\Core\Database\Query\Select
    *   A new query object ready to have COUNT(*) performed on it.
    */
   protected function prepareCountQuery() {
diff --git a/core/lib/Drupal/Core/Database/Query/SelectExtender.php b/core/lib/Drupal/Core/Database/Query/SelectExtender.php
index 2f27d1b..e6d8a84 100644
--- a/core/lib/Drupal/Core/Database/Query/SelectExtender.php
+++ b/core/lib/Drupal/Core/Database/Query/SelectExtender.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\SelectExtender
+ * Definition of \Drupal\Core\Database\Query\SelectExtender
  */
 
 namespace Drupal\Core\Database\Query;
@@ -17,7 +17,7 @@ class SelectExtender implements SelectInterface {
   /**
    * The Select query object we are extending/decorating.
    *
-   * @var Drupal\Core\Database\Query\SelectInterface
+   * @var \Drupal\Core\Database\Query\SelectInterface
    */
   protected $query;
 
@@ -45,20 +45,20 @@ public function __construct(SelectInterface $query, Connection $connection) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\PlaceholderInterface::uniqueIdentifier().
+   * Implements \Drupal\Core\Database\Query\PlaceholderInterface::uniqueIdentifier().
    */
   public function uniqueIdentifier() {
     return $this->uniqueIdentifier;
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\PlaceholderInterface::nextPlaceholder().
+   * Implements \Drupal\Core\Database\Query\PlaceholderInterface::nextPlaceholder().
    */
   public function nextPlaceholder() {
     return $this->placeholder++;
   }
 
-  /* Implementations of Drupal\Core\Database\Query\AlterableInterface. */
+  /* Implementations of \Drupal\Core\Database\Query\AlterableInterface. */
 
   public function addTag($tag) {
     $this->query->addTag($tag);
@@ -86,7 +86,7 @@ public function getMetaData($key) {
     return $this->query->getMetaData($key);
   }
 
-  /* Implementations of Drupal\Core\Database\Query\ConditionInterface for the WHERE clause. */
+  /* Implementations of \Drupal\Core\Database\Query\ConditionInterface for the WHERE clause. */
 
   public function condition($field, $value = NULL, $operator = NULL) {
     $this->query->condition($field, $value, $operator);
@@ -114,7 +114,7 @@ public function compiled() {
     return $this->query->compiled();
   }
 
-  /* Implementations of Drupal\Core\Database\Query\ConditionInterface for the HAVING clause. */
+  /* Implementations of \Drupal\Core\Database\Query\ConditionInterface for the HAVING clause. */
 
   public function havingCondition($field, $value = NULL, $operator = '=') {
     $this->query->havingCondition($field, $value, $operator);
@@ -138,7 +138,7 @@ public function havingCompile(Connection $connection) {
     return $this->query->havingCompile($connection);
   }
 
-  /* Implementations of Drupal\Core\Database\Query\ExtendableInterface. */
+  /* Implementations of \Drupal\Core\Database\Query\ExtendableInterface. */
 
   public function extend($extender_name) {
     $class = $this->connection->getDriverClass($extender_name);
diff --git a/core/lib/Drupal/Core/Database/Query/SelectInterface.php b/core/lib/Drupal/Core/Database/Query/SelectInterface.php
index 779e69d..873ae71 100644
--- a/core/lib/Drupal/Core/Database/Query/SelectInterface.php
+++ b/core/lib/Drupal/Core/Database/Query/SelectInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\SelectInterface
+ * Definition of \Drupal\Core\Database\Query\SelectInterface
  */
 
 namespace Drupal\Core\Database\Query;
@@ -184,7 +184,7 @@ public function addField($table_alias, $field, $alias = NULL);
    *   An indexed array of fields present in the specified table that should be
    *   included in this query. If not specified, $table_alias.* will be generated
    *   without any aliases.
-   * @return Drupal\Core\Database\Query\SelectInterface
+   * @return \Drupal\Core\Database\Query\SelectInterface
    *   The called object.
    */
   public function fields($table_alias, array $fields = array());
@@ -352,7 +352,7 @@ public function addJoin($type, $table, $alias = NULL, $condition = NULL, $argume
    *   The field on which to order.
    * @param $direction
    *   The direction to sort. Legal values are "ASC" and "DESC".
-   * @return Drupal\Core\Database\Query\SelectInterface
+   * @return \Drupal\Core\Database\Query\SelectInterface
    *   The called object.
    */
   public function orderBy($field, $direction = 'ASC');
@@ -374,7 +374,7 @@ public function orderBy($field, $direction = 'ASC');
    *
    * for an example of such an alternate sorting mechanism.
    *
-   * @return Drupal\Core\Database\Query\SelectInterface
+   * @return \Drupal\Core\Database\Query\SelectInterface
    *   The called object
    */
   public function orderRandom();
@@ -390,7 +390,7 @@ public function orderRandom();
    *   range directives that are set.
    * @param $length
    *   The number of records to return from the result set.
-   * @return Drupal\Core\Database\Query\SelectInterface
+   * @return \Drupal\Core\Database\Query\SelectInterface
    *   The called object.
    */
   public function range($start = NULL, $length = NULL);
@@ -415,7 +415,7 @@ public function range($start = NULL, $length = NULL);
    * @param $type
    *   The type of UNION to add to the query. Defaults to plain
    *   UNION.
-   * @return Drupal\Core\Database\Query\SelectInterface
+   * @return \Drupal\Core\Database\Query\SelectInterface
    *   The called object.
    */
   public function union(SelectInterface $query, $type = '');
@@ -425,7 +425,7 @@ public function union(SelectInterface $query, $type = '');
    *
    * @param $field
    *   The field on which to group. This should be the field as aliased.
-   * @return Drupal\Core\Database\Query\SelectInterface
+   * @return \Drupal\Core\Database\Query\SelectInterface
    *   The called object.
    */
   public function groupBy($field);
@@ -433,7 +433,7 @@ public function groupBy($field);
   /**
    * Get the equivalent COUNT query of this query as a new query object.
    *
-   * @return Drupal\Core\Database\Query\SelectInterface
+   * @return \Drupal\Core\Database\Query\SelectInterface
    *   A new SelectQuery object with no fields or expressions besides COUNT(*).
    */
   public function countQuery();
@@ -472,7 +472,7 @@ public function preExecute(SelectInterface $query = NULL);
    *   The comparison operator, such as =, <, or >=. It also accepts more complex
    *   options such as IN, LIKE, or BETWEEN. Defaults to IN if $value is an array
    *   = otherwise.
-   * @return Drupal\Core\Database\Query\ConditionInterface
+   * @return \Drupal\Core\Database\Query\ConditionInterface
    *   The called object.
    */
   public function havingCondition($field, $value = NULL, $operator = NULL);
@@ -497,7 +497,7 @@ public function __clone();
    * @param $set
    *   IF TRUE, FOR UPDATE will be added to the query, if FALSE then it won't.
    *
-   * @return Drupal\Core\Database\Query\ConditionInterface
+   * @return \Drupal\Core\Database\Query\ConditionInterface
    *   The called object.
    */
   public function forUpdate($set = TRUE);
diff --git a/core/lib/Drupal/Core/Database/Query/TableSortExtender.php b/core/lib/Drupal/Core/Database/Query/TableSortExtender.php
index cf1a042..46bb1f6 100644
--- a/core/lib/Drupal/Core/Database/Query/TableSortExtender.php
+++ b/core/lib/Drupal/Core/Database/Query/TableSortExtender.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\TableSortExtender.
+ * Definition of \Drupal\Core\Database\Query\TableSortExtender.
  */
 
 namespace Drupal\Core\Database\Query;
diff --git a/core/lib/Drupal/Core/Database/Query/Truncate.php b/core/lib/Drupal/Core/Database/Query/Truncate.php
index ea67dad..8c94f1d 100644
--- a/core/lib/Drupal/Core/Database/Query/Truncate.php
+++ b/core/lib/Drupal/Core/Database/Query/Truncate.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Truncate
+ * Definition of \Drupal\Core\Database\Query\Truncate
  */
 
 namespace Drupal\Core\Database\Query;
@@ -40,14 +40,14 @@ public function __construct(Connection $connection, $table, array $options = arr
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compile().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compile().
    */
   public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
     return $this->condition->compile($connection, $queryPlaceholder);
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compiled().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compiled().
    */
   public function compiled() {
     return $this->condition->compiled();
diff --git a/core/lib/Drupal/Core/Database/Query/Update.php b/core/lib/Drupal/Core/Database/Query/Update.php
index abbbc2b..374aac9 100644
--- a/core/lib/Drupal/Core/Database/Query/Update.php
+++ b/core/lib/Drupal/Core/Database/Query/Update.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Query\Update
+ * Definition of \Drupal\Core\Database\Query\Update
  */
 
 namespace Drupal\Core\Database\Query;
@@ -41,7 +41,7 @@ class Update extends Query implements ConditionInterface {
    *
    * Condition handling is handled via composition.
    *
-   * @var Drupal\Core\Database\Query\Condition
+   * @var \Drupal\Core\Database\Query\Condition
    */
   protected $condition;
 
@@ -63,7 +63,7 @@ class Update extends Query implements ConditionInterface {
   /**
    * Constructs an Update query object.
    *
-   * @param Drupal\Core\Database\Connection $connection
+   * @param \Drupal\Core\Database\Connection $connection
    *   A Connection object.
    * @param string $table
    *   Name of the table to associate with this query.
@@ -79,7 +79,7 @@ public function __construct(Connection $connection, $table, array $options = arr
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::condition().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::condition().
    */
   public function condition($field, $value = NULL, $operator = NULL) {
     $this->condition->condition($field, $value, $operator);
@@ -87,7 +87,7 @@ public function condition($field, $value = NULL, $operator = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNull().
    */
   public function isNull($field) {
     $this->condition->isNull($field);
@@ -95,7 +95,7 @@ public function isNull($field) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::isNotNull().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::isNotNull().
    */
   public function isNotNull($field) {
     $this->condition->isNotNull($field);
@@ -103,7 +103,7 @@ public function isNotNull($field) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::exists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::exists().
    */
   public function exists(SelectInterface $select) {
     $this->condition->exists($select);
@@ -111,7 +111,7 @@ public function exists(SelectInterface $select) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::notExists().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::notExists().
    */
   public function notExists(SelectInterface $select) {
     $this->condition->notExists($select);
@@ -119,21 +119,21 @@ public function notExists(SelectInterface $select) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::conditions().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::conditions().
    */
   public function &conditions() {
     return $this->condition->conditions();
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::arguments().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::arguments().
    */
   public function arguments() {
     return $this->condition->arguments();
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::where().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::where().
    */
   public function where($snippet, $args = array()) {
     $this->condition->where($snippet, $args);
@@ -141,14 +141,14 @@ public function where($snippet, $args = array()) {
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compile().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compile().
    */
   public function compile(Connection $connection, PlaceholderInterface $queryPlaceholder) {
     return $this->condition->compile($connection, $queryPlaceholder);
   }
 
   /**
-   * Implements Drupal\Core\Database\Query\ConditionInterface::compiled().
+   * Implements \Drupal\Core\Database\Query\ConditionInterface::compiled().
    */
   public function compiled() {
     return $this->condition->compiled();
@@ -161,7 +161,7 @@ public function compiled() {
    *   An associative array of fields to write into the database. The array keys
    *   are the field names and the values are the values to which to set them.
    *
-   * @return Drupal\Core\Database\Query\Update
+   * @return \Drupal\Core\Database\Query\Update
    *   The called object.
    */
   public function fields(array $fields) {
@@ -184,7 +184,7 @@ public function fields(array $fields) {
    *   If specified, this is an array of key/value pairs for named placeholders
    *   corresponding to the expression.
    *
-   * @return Drupal\Core\Database\Query\Update
+   * @return \Drupal\Core\Database\Query\Update
    *   The called object.
    */
   public function expression($field, $expression, array $arguments = NULL) {
diff --git a/core/lib/Drupal/Core/Database/Schema.php b/core/lib/Drupal/Core/Database/Schema.php
index 7b884f7..9acd222 100644
--- a/core/lib/Drupal/Core/Database/Schema.php
+++ b/core/lib/Drupal/Core/Database/Schema.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Schema
+ * Definition of \Drupal\Core\Database\Schema
  */
 
 namespace Drupal\Core\Database;
@@ -287,8 +287,8 @@ function prefixNonTable($table) {
    * @param $add_prefix
    *   Boolean to indicate whether the table name needs to be prefixed.
    *
-   * @return Drupal\Core\Database\Query\ConditionInterface
-   *   A Drupal\Core\Database\Query\Condition object.
+   * @return \Drupal\Core\Database\Query\ConditionInterface
+   *   A \Drupal\Core\Database\Query\Condition object.
    */
   protected function buildTableNameCondition($table_name, $operator = '=', $add_prefix = TRUE) {
     $info = $this->connection->getConnectionOptions();
@@ -388,9 +388,9 @@ public function fieldExists($table, $column) {
    * @param $new_name
    *   The new name for the table.
    *
-   * @throws Drupal\Core\Database\SchemaObjectDoesNotExistException
+   * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException
    *   If the specified table doesn't exist.
-   * @throws Drupal\Core\Database\SchemaObjectExistsException
+   * @throws \Drupal\Core\Database\SchemaObjectExistsException
    *   If a table with the specified new name already exists.
    */
   abstract public function renameTable($table, $new_name);
@@ -428,9 +428,9 @@ public function fieldExists($table, $column) {
    *   or index including it in this array. See db_change_field() for more
    *   explanation why.
    *
-   * @throws Drupal\Core\Database\SchemaObjectDoesNotExistException
+   * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException
    *   If the specified table doesn't exist.
-   * @throws Drupal\Core\Database\SchemaObjectExistsException
+   * @throws \Drupal\Core\Database\SchemaObjectExistsException
    *   If the specified table already has a field by that name.
    */
   abstract public function addField($table, $field, $spec, $keys_new = array());
@@ -459,7 +459,7 @@ public function fieldExists($table, $column) {
    * @param $default
    *   Default value to be set. NULL for 'default NULL'.
    *
-   * @throws Drupal\Core\Database\SchemaObjectDoesNotExistException
+   * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException
    *   If the specified table or field doesn't exist.
    */
   abstract public function fieldSetDefault($table, $field, $default);
@@ -472,7 +472,7 @@ public function fieldExists($table, $column) {
    * @param $field
    *   The field to be altered.
    *
-   * @throws Drupal\Core\Database\SchemaObjectDoesNotExistException
+   * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException
    *   If the specified table or field doesn't exist.
    */
   abstract public function fieldSetNoDefault($table, $field);
@@ -498,9 +498,9 @@ public function fieldExists($table, $column) {
    * @param $fields
    *   Fields for the primary key.
    *
-   * @throws Drupal\Core\Database\SchemaObjectDoesNotExistException
+   * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException
    *   If the specified table doesn't exist.
-   * @throws Drupal\Core\Database\SchemaObjectExistsException
+   * @throws \Drupal\Core\Database\SchemaObjectExistsException
    *   If the specified table already has a primary key.
    */
   abstract public function addPrimaryKey($table, $fields);
@@ -527,9 +527,9 @@ public function fieldExists($table, $column) {
    * @param $fields
    *   An array of field names.
    *
-   * @throws Drupal\Core\Database\SchemaObjectDoesNotExistException
+   * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException
    *   If the specified table doesn't exist.
-   * @throws Drupal\Core\Database\SchemaObjectExistsException
+   * @throws \Drupal\Core\Database\SchemaObjectExistsException
    *   If the specified table already has a key by that name.
    */
   abstract public function addUniqueKey($table, $name, $fields);
@@ -558,9 +558,9 @@ public function fieldExists($table, $column) {
    * @param $fields
    *   An array of field names.
    *
-   * @throws Drupal\Core\Database\SchemaObjectDoesNotExistException
+   * @throws \Drupal\Core\Database\SchemaObjectDoesNotExistException
    *   If the specified table doesn't exist.
-   * @throws Drupal\Core\Database\SchemaObjectExistsException
+   * @throws \Drupal\Core\Database\SchemaObjectExistsException
    *   If the specified table already has an index by that name.
    */
   abstract public function addIndex($table, $name, $fields);
@@ -654,7 +654,7 @@ public function fieldExists($table, $column) {
    * @param $table
    *   A Schema API table definition array.
    *
-   * @throws Drupal\Core\Database\SchemaObjectExistsException
+   * @throws \Drupal\Core\Database\SchemaObjectExistsException
    *   If the specified table already exists.
    */
   public function createTable($name, $table) {
diff --git a/core/lib/Drupal/Core/Database/SchemaException.php b/core/lib/Drupal/Core/Database/SchemaException.php
index 3ae72b4..9e38f2e 100644
--- a/core/lib/Drupal/Core/Database/SchemaException.php
+++ b/core/lib/Drupal/Core/Database/SchemaException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\SchemaException
+ * Definition of \Drupal\Core\Database\SchemaException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/SchemaObjectDoesNotExistException.php b/core/lib/Drupal/Core/Database/SchemaObjectDoesNotExistException.php
index ac5a1f8..d51271e 100644
--- a/core/lib/Drupal/Core/Database/SchemaObjectDoesNotExistException.php
+++ b/core/lib/Drupal/Core/Database/SchemaObjectDoesNotExistException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\SchemaObjectDoesNotExistException
+ * Definition of \Drupal\Core\Database\SchemaObjectDoesNotExistException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/SchemaObjectExistsException.php b/core/lib/Drupal/Core/Database/SchemaObjectExistsException.php
index e8221b5..77a6a7b 100644
--- a/core/lib/Drupal/Core/Database/SchemaObjectExistsException.php
+++ b/core/lib/Drupal/Core/Database/SchemaObjectExistsException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\SchemaObjectExistsException
+ * Definition of \Drupal\Core\Database\SchemaObjectExistsException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/Statement.php b/core/lib/Drupal/Core/Database/Statement.php
index b7c9fdd..8b0d2b3 100644
--- a/core/lib/Drupal/Core/Database/Statement.php
+++ b/core/lib/Drupal/Core/Database/Statement.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\StatementBase
+ * Definition of \Drupal\Core\Database\StatementBase
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/StatementEmpty.php b/core/lib/Drupal/Core/Database/StatementEmpty.php
index 4336fa1..db90f16 100644
--- a/core/lib/Drupal/Core/Database/StatementEmpty.php
+++ b/core/lib/Drupal/Core/Database/StatementEmpty.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\StatementEmpty
+ * Definition of \Drupal\Core\Database\StatementEmpty
  */
 
 namespace Drupal\Core\Database;
@@ -18,7 +18,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/StatementInterface.php b/core/lib/Drupal/Core/Database/StatementInterface.php
index b3d356c..5533367 100644
--- a/core/lib/Drupal/Core/Database/StatementInterface.php
+++ b/core/lib/Drupal/Core/Database/StatementInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\StatementInterface
+ * Definition of \Drupal\Core\Database\StatementInterface
  */
 
 namespace Drupal\Core\Database;
@@ -19,13 +19,13 @@
  *
  * Child implementations should either extend PDOStatement:
  * @code
- * class Drupal\Core\Database\Driver\oracle\Statement extends PDOStatement implements Drupal\Core\Database\StatementInterface {}
+ * class \Drupal\Core\Database\Driver\oracle\Statement extends PDOStatement implements \Drupal\Core\Database\StatementInterface {}
  * @endcode
  * or define their own class. If defining their own class, they will also have
  * to implement either the Iterator or IteratorAggregate interface before
- * Drupal\Core\Database\StatementInterface:
+ * \Drupal\Core\Database\StatementInterface:
  * @code
- * class Drupal\Core\Database\Driver\oracle\Statement implements Iterator, Drupal\Core\Database\StatementInterface {}
+ * class \Drupal\Core\Database\Driver\oracle\Statement implements Iterator, \Drupal\Core\Database\StatementInterface {}
  * @endcode
  */
 interface StatementInterface extends Traversable {
diff --git a/core/lib/Drupal/Core/Database/StatementPrefetch.php b/core/lib/Drupal/Core/Database/StatementPrefetch.php
index f601f74..37d7c41 100644
--- a/core/lib/Drupal/Core/Database/StatementPrefetch.php
+++ b/core/lib/Drupal/Core/Database/StatementPrefetch.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\StatementPrefetch
+ * Definition of \Drupal\Core\Database\StatementPrefetch
  */
 
 namespace Drupal\Core\Database;
@@ -46,7 +46,7 @@ class StatementPrefetch implements Iterator, StatementInterface {
   /**
    * Reference to the Drupal database connection object for this statement.
    *
-   * @var Drupal\Core\Database\Connection
+   * @var \Drupal\Core\Database\Connection
    */
   protected $connection;
 
diff --git a/core/lib/Drupal/Core/Database/Transaction.php b/core/lib/Drupal/Core/Database/Transaction.php
index 2dceb24..b790f00 100644
--- a/core/lib/Drupal/Core/Database/Transaction.php
+++ b/core/lib/Drupal/Core/Database/Transaction.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\Transaction
+ * Definition of \Drupal\Core\Database\Transaction
  */
 
 namespace Drupal\Core\Database;
@@ -31,7 +31,7 @@ class Transaction {
   /**
    * The connection object for this transaction.
    *
-   * @var Drupal\Core\Database\Connection
+   * @var \Drupal\Core\Database\Connection
    */
   protected $connection;
 
@@ -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/Database/TransactionCommitFailedException.php b/core/lib/Drupal/Core/Database/TransactionCommitFailedException.php
index 6a5309e..f50a8bd 100644
--- a/core/lib/Drupal/Core/Database/TransactionCommitFailedException.php
+++ b/core/lib/Drupal/Core/Database/TransactionCommitFailedException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\TransactionCommitFailedException
+ * Definition of \Drupal\Core\Database\TransactionCommitFailedException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/TransactionException.php b/core/lib/Drupal/Core/Database/TransactionException.php
index 25079f5..44fd361 100644
--- a/core/lib/Drupal/Core/Database/TransactionException.php
+++ b/core/lib/Drupal/Core/Database/TransactionException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\TransactionException
+ * Definition of \Drupal\Core\Database\TransactionException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/TransactionExplicitCommitNotAllowedException.php b/core/lib/Drupal/Core/Database/TransactionExplicitCommitNotAllowedException.php
index fd4bf23..5641b81 100644
--- a/core/lib/Drupal/Core/Database/TransactionExplicitCommitNotAllowedException.php
+++ b/core/lib/Drupal/Core/Database/TransactionExplicitCommitNotAllowedException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\TransactionExplicitCommitNotAllowedException
+ * Definition of \Drupal\Core\Database\TransactionExplicitCommitNotAllowedException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/TransactionNameNonUniqueException.php b/core/lib/Drupal/Core/Database/TransactionNameNonUniqueException.php
index aef40cb..bbcccc9 100644
--- a/core/lib/Drupal/Core/Database/TransactionNameNonUniqueException.php
+++ b/core/lib/Drupal/Core/Database/TransactionNameNonUniqueException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\TransactionNameNonUniqueException
+ * Definition of \Drupal\Core\Database\TransactionNameNonUniqueException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/TransactionNoActiveException.php b/core/lib/Drupal/Core/Database/TransactionNoActiveException.php
index 44acede..1a58e92 100644
--- a/core/lib/Drupal/Core/Database/TransactionNoActiveException.php
+++ b/core/lib/Drupal/Core/Database/TransactionNoActiveException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\TransactionNoActiveException
+ * Definition of \Drupal\Core\Database\TransactionNoActiveException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php b/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php
index 2e2fe7a..9301f3a 100644
--- a/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php
+++ b/core/lib/Drupal/Core/Database/TransactionOutOfOrderException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Database\TransactionOutOfOrderException
+ * Definition of \Drupal\Core\Database\TransactionOutOfOrderException
  */
 
 namespace Drupal\Core\Database;
diff --git a/core/lib/Drupal/Core/Datetime/DrupalDateTime.php b/core/lib/Drupal/Core/Datetime/DrupalDateTime.php
index 0179bcc..d640731 100644
--- a/core/lib/Drupal/Core/Datetime/DrupalDateTime.php
+++ b/core/lib/Drupal/Core/Datetime/DrupalDateTime.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Datetime\DrupalDateTime.
+ * Definition of \Drupal\Core\Datetime\DrupalDateTime.
  */
 namespace Drupal\Core\Datetime;
 
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/ModifyServiceDefinitionsPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/ModifyServiceDefinitionsPass.php
index 25614e3..0aed013 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/ModifyServiceDefinitionsPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/ModifyServiceDefinitionsPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\DependencyInjection\Compiler\ModifyServiceDefinitionsPass.
+ * Contains \Drupal\Core\DependencyInjection\Compiler\ModifyServiceDefinitionsPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php
index 9e6506d..ed5fba6 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterAccessChecksPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\DependencyInjection\Compiler\RegisterAccessChecksPass.
+ * Contains \Drupal\Core\DependencyInjection\Compiler\RegisterAccessChecksPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterKernelListenersPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterKernelListenersPass.php
index e580c31..e10b464 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterKernelListenersPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterKernelListenersPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\DependencyInjection\Compiler\RegisterKernelListenersPass.
+ * Definition of \Drupal\Core\DependencyInjection\Compiler\RegisterKernelListenersPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterMatchersPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterMatchersPass.php
index 793394b..e2a6496 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterMatchersPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterMatchersPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\DependencyInjection\Compiler\RegisterMatchersPass.
+ * Contains \Drupal\Core\DependencyInjection\Compiler\RegisterMatchersPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterParamConvertersPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterParamConvertersPass.php
index 6fe1447..f1d68c2 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterParamConvertersPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterParamConvertersPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\DependencyInjection\Compiler\RegisterParamConvertersPass.
+ * Contains \Drupal\Core\DependencyInjection\Compiler\RegisterParamConvertersPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteEnhancersPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteEnhancersPass.php
index 3d93bd0..bd97ce4 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteEnhancersPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteEnhancersPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\DependencyInjection\Compiler\RegisterRouteEnhancersPass.
+ * Contains \Drupal\Core\DependencyInjection\Compiler\RegisterRouteEnhancersPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteFiltersPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteFiltersPass.php
index de9d222..bccfe68 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteFiltersPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterRouteFiltersPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\DependencyInjection\Compiler\RegisterNestedMatchersPass.
+ * Contains \Drupal\Core\DependencyInjection\Compiler\RegisterNestedMatchersPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterStringTranslatorsPass.php b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterStringTranslatorsPass.php
index 39a0764..8629848 100644
--- a/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterStringTranslatorsPass.php
+++ b/core/lib/Drupal/Core/DependencyInjection/Compiler/RegisterStringTranslatorsPass.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\DependencyInjection\Compiler\RegisterStringTranslatorsPass.
+ * Contains \Drupal\Core\DependencyInjection\Compiler\RegisterStringTranslatorsPass.
  */
 
 namespace Drupal\Core\DependencyInjection\Compiler;
diff --git a/core/lib/Drupal/Core/DependencyInjection/ContainerBuilder.php b/core/lib/Drupal/Core/DependencyInjection/ContainerBuilder.php
index 0bc4d67..76f0b07 100644
--- a/core/lib/Drupal/Core/DependencyInjection/ContainerBuilder.php
+++ b/core/lib/Drupal/Core/DependencyInjection/ContainerBuilder.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\DependencyInjection\Container.
+ * Definition of \Drupal\Core\DependencyInjection\Container.
  */
 
 namespace Drupal\Core\DependencyInjection;
diff --git a/core/lib/Drupal/Core/DrupalKernel.php b/core/lib/Drupal/Core/DrupalKernel.php
index af1fe52..83a7491 100644
--- a/core/lib/Drupal/Core/DrupalKernel.php
+++ b/core/lib/Drupal/Core/DrupalKernel.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\DrupalKernel.
+ * Definition of \Drupal\Core\DrupalKernel.
  */
 
 namespace Drupal\Core;
@@ -31,7 +31,7 @@
  * cannot be registered in the core.services.yaml file, adds any compiler passes
  * needed by core, e.g. for processing tagged services. Each module can add its
  * own service provider, i.e. a class implementing
- * Drupal\Core\DependencyInjection\ServiceProvider, to register services to the
+ * \Drupal\Core\DependencyInjection\ServiceProvider, to register services to the
  * container, or modify existing services.
  */
 class DrupalKernel implements DrupalKernelInterface, TerminableInterface {
@@ -328,7 +328,7 @@ protected function moduleData($module) {
   }
 
   /**
-   * Implements Drupal\Core\DrupalKernelInterface::updateModules().
+   * Implements \Drupal\Core\DrupalKernelInterface::updateModules().
    *
    * @todo Remove obsolete $module_list parameter. Only $module_filenames is
    *   needed.
diff --git a/core/lib/Drupal/Core/DrupalKernelInterface.php b/core/lib/Drupal/Core/DrupalKernelInterface.php
index 96b2f92..a2f8b93 100644
--- a/core/lib/Drupal/Core/DrupalKernelInterface.php
+++ b/core/lib/Drupal/Core/DrupalKernelInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\DrupalKernelInterface.
+ * Definition of \Drupal\Core\DrupalKernelInterface.
  */
 
 namespace Drupal\Core;
diff --git a/core/lib/Drupal/Core/Entity/DatabaseStorageController.php b/core/lib/Drupal/Core/Entity/DatabaseStorageController.php
index b647009..a5db328 100644
--- a/core/lib/Drupal/Core/Entity/DatabaseStorageController.php
+++ b/core/lib/Drupal/Core/Entity/DatabaseStorageController.php
@@ -19,7 +19,7 @@
 /**
  * Defines a base entity controller class.
  *
- * Default implementation of Drupal\Core\Entity\EntityStorageControllerInterface.
+ * Default implementation of \Drupal\Core\Entity\EntityStorageControllerInterface.
  *
  * This class can be used as-is by most simple entity types. Entity types
  * requiring special handling can extend the class.
@@ -142,7 +142,7 @@ public function load(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);
@@ -187,7 +187,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);
@@ -254,7 +254,7 @@ protected function buildPropertyQuery(QueryInterface $entity_query, array $value
    * being loaded needs to be augmented with additional data from another
    * table, such as loading node type into comments or vocabulary machine name
    * into terms, however it can also support $conditions on different tables.
-   * See Drupal\comment\CommentStorageController::buildQuery() for an example.
+   * See \Drupal\comment\CommentStorageController::buildQuery() for an example.
    *
    * @param array|null $ids
    *   An array of entity IDs, or NULL to load all entities.
@@ -319,7 +319,7 @@ protected function buildQuery($ids, $revision_id = FALSE) {
    * hook_node_load() or hook_user_load(). If your hook_TYPE_load()
    * expects special parameters apart from the queried entities, you can set
    * $this->hookLoadArguments prior to calling the method.
-   * See Drupal\node\NodeStorageController::attachLoad() for an example.
+   * See \Drupal\node\NodeStorageController::attachLoad() for an example.
    *
    * @param $queried_entities
    *   Associative array of query results, keyed on the entity ID.
@@ -482,7 +482,7 @@ public function save(EntityInterface $entity) {
   /**
    * Saves an entity revision.
    *
-   * @param Drupal\Core\Entity\EntityInterface $entity
+   * @param \Drupal\Core\Entity\EntityInterface $entity
    *   The entity object.
    */
   protected function saveRevision(EntityInterface $entity) {
diff --git a/core/lib/Drupal/Core/Entity/EntityBCDecorator.php b/core/lib/Drupal/Core/Entity/EntityBCDecorator.php
index 448d434..76f46f9 100644
--- a/core/lib/Drupal/Core/Entity/EntityBCDecorator.php
+++ b/core/lib/Drupal/Core/Entity/EntityBCDecorator.php
@@ -55,7 +55,7 @@ class EntityBCDecorator implements IteratorAggregate, EntityInterface {
   protected $definitions;
 
   /**
-   * Constructs a Drupal\Core\Entity\EntityCompatibilityDecorator object.
+   * Constructs a \Drupal\Core\Entity\EntityCompatibilityDecorator object.
    *
    * @param \Drupal\Core\Entity\EntityInterface $decorated
    *   The decorated entity.
diff --git a/core/lib/Drupal/Core/Entity/EntityFormController.php b/core/lib/Drupal/Core/Entity/EntityFormController.php
index 2153250..918cdc0 100644
--- a/core/lib/Drupal/Core/Entity/EntityFormController.php
+++ b/core/lib/Drupal/Core/Entity/EntityFormController.php
@@ -168,7 +168,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 1ebab9e..2364ed1 100644
--- a/core/lib/Drupal/Core/Entity/EntityListController.php
+++ b/core/lib/Drupal/Core/Entity/EntityListController.php
@@ -123,7 +123,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['label'] = t('Label');
@@ -141,7 +141,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['label'] = $entity->label();
@@ -160,7 +160,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/EntityListControllerInterface.php b/core/lib/Drupal/Core/Entity/EntityListControllerInterface.php
index b7581d8..69d3c72 100644
--- a/core/lib/Drupal/Core/Entity/EntityListControllerInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityListControllerInterface.php
@@ -27,7 +27,7 @@ public function getStorageController();
    * sorting the loaded entities.
    *
    * @return array
-   *   An array of entities implementing Drupal\Core\Entity\EntityInterface.
+   *   An array of entities implementing \Drupal\Core\Entity\EntityInterface.
    */
   public function load();
 
diff --git a/core/lib/Drupal/Core/Entity/EntityStorageControllerBase.php b/core/lib/Drupal/Core/Entity/EntityStorageControllerBase.php
index 5dbf55b..7e655ea 100644
--- a/core/lib/Drupal/Core/Entity/EntityStorageControllerBase.php
+++ b/core/lib/Drupal/Core/Entity/EntityStorageControllerBase.php
@@ -47,7 +47,7 @@
   /**
    * Additional arguments to pass to hook_TYPE_load().
    *
-   * Set before calling Drupal\Core\Entity\DatabaseStorageController::attachLoad().
+   * Set before calling \Drupal\Core\Entity\DatabaseStorageController::attachLoad().
    *
    * @var array
    */
diff --git a/core/lib/Drupal/Core/Entity/EntityStorageControllerInterface.php b/core/lib/Drupal/Core/Entity/EntityStorageControllerInterface.php
index 5ae3076..07a3f91 100644
--- a/core/lib/Drupal/Core/Entity/EntityStorageControllerInterface.php
+++ b/core/lib/Drupal/Core/Entity/EntityStorageControllerInterface.php
@@ -15,7 +15,7 @@
  * have to implement this interface.
  *
  * Most simple, SQL-based entity controllers will do better by extending
- * Drupal\Core\Entity\DatabaseStorageController instead of implementing this
+ * \Drupal\Core\Entity\DatabaseStorageController instead of implementing this
  * interface directly.
  */
 interface EntityStorageControllerInterface {
diff --git a/core/lib/Drupal/Core/Entity/Field/FieldInterface.php b/core/lib/Drupal/Core/Entity/Field/FieldInterface.php
index c2dfbdb..9a22298 100644
--- a/core/lib/Drupal/Core/Entity/Field/FieldInterface.php
+++ b/core/lib/Drupal/Core/Entity/Field/FieldInterface.php
@@ -19,7 +19,7 @@
  * particular get() and set() as well as their magic equivalences.
  *
  * Optionally, a typed data object implementing
- * Drupal\Core\TypedData\TypedDataInterface may be passed to
+ * \Drupal\Core\TypedData\TypedDataInterface may be passed to
  * ArrayAccess::offsetSet() instead of a plain value.
  *
  * When implementing this interface which extends Traversable, make sure to list
diff --git a/core/lib/Drupal/Core/Entity/Field/FieldItemInterface.php b/core/lib/Drupal/Core/Entity/Field/FieldItemInterface.php
index 059a477..6b18a51 100644
--- a/core/lib/Drupal/Core/Entity/Field/FieldItemInterface.php
+++ b/core/lib/Drupal/Core/Entity/Field/FieldItemInterface.php
@@ -44,7 +44,7 @@ public function __get($property_name);
    *   The name of the property to set; e.g., 'title' or 'name'.
    * @param $value
    *   The value to set, or NULL to unset the property. Optionally, a typed
-   *   data object implementing Drupal\Core\TypedData\TypedDataInterface may be
+   *   data object implementing \Drupal\Core\TypedData\TypedDataInterface may be
    *   passed instead of a plain value.
    *
    * @throws \InvalidArgumentException
diff --git a/core/lib/Drupal/Core/Entity/Field/Type/EntityWrapper.php b/core/lib/Drupal/Core/Entity/Field/Type/EntityWrapper.php
index 2b2b54a..0022a51 100644
--- a/core/lib/Drupal/Core/Entity/Field/Type/EntityWrapper.php
+++ b/core/lib/Drupal/Core/Entity/Field/Type/EntityWrapper.php
@@ -23,7 +23,7 @@
  * (if set).
  *
  * The plain value of this wrapper is the entity object, i.e. an instance of
- * Drupal\Core\Entity\EntityInterface. For setting the value the entity object
+ * \Drupal\Core\Entity\EntityInterface. For setting the value the entity object
  * or the entity ID may be passed, whereas passing the ID is only supported if
  * an 'entity type' constraint is specified.
  *
diff --git a/core/lib/Drupal/Core/Entity/Query/QueryInterface.php b/core/lib/Drupal/Core/Entity/Query/QueryInterface.php
index 48b884c..9289148 100644
--- a/core/lib/Drupal/Core/Entity/Query/QueryInterface.php
+++ b/core/lib/Drupal/Core/Entity/Query/QueryInterface.php
@@ -61,8 +61,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/Entity/Query/Sql/Condition.php b/core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
index 7323586..d52a00c 100644
--- a/core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
+++ b/core/lib/Drupal/Core/Entity/Query/Sql/Condition.php
@@ -15,7 +15,7 @@
 class Condition extends ConditionBase {
 
   /**
-   * Implements Drupal\Core\Entity\Query\ConditionInterface::compile().
+   * Implements \Drupal\Core\Entity\Query\ConditionInterface::compile().
    */
   public function compile($conditionContainer) {
     // If this is not the top level condition group then the sql query is
@@ -43,14 +43,14 @@ public function compile($conditionContainer) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\Query\ConditionInterface::exists().
+   * Implements \Drupal\Core\Entity\Query\ConditionInterface::exists().
    */
   public function exists($field, $langcode = NULL) {
     return $this->condition($field, NULL, 'IS NOT NULL', $langcode);
   }
 
   /**
-   * Implements Drupal\Core\Entity\Query\ConditionInterface::notExists().
+   * Implements \Drupal\Core\Entity\Query\ConditionInterface::notExists().
    */
   public function notExists($field, $langcode = NULL) {
     return $this->condition($field, NULL, 'IS NULL', $langcode);
diff --git a/core/lib/Drupal/Core/Entity/Query/Sql/Query.php b/core/lib/Drupal/Core/Entity/Query/Sql/Query.php
index 6fbae92..31c0ac1 100644
--- a/core/lib/Drupal/Core/Entity/Query/Sql/Query.php
+++ b/core/lib/Drupal/Core/Entity/Query/Sql/Query.php
@@ -87,7 +87,7 @@ public function __construct($entity_type, EntityManager $entity_manager, $conjun
 
 
   /**
-   * Implements Drupal\Core\Entity\Query\QueryInterface::conditionGroupFactory().
+   * Implements \Drupal\Core\Entity\Query\QueryInterface::conditionGroupFactory().
    */
   public function conditionGroupFactory($conjunction = 'AND') {
     return new Condition($conjunction);
diff --git a/core/lib/Drupal/Core/EventSubscriber/AccessSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/AccessSubscriber.php
index 6f18839..486ba7b 100644
--- a/core/lib/Drupal/Core/EventSubscriber/AccessSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/AccessSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\EventSubscriber\AccessSubscriber.
+ * Contains \Drupal\Core\EventSubscriber\AccessSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/FinishResponseSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/FinishResponseSubscriber.php
index 0b9bbad..b00fb23 100644
--- a/core/lib/Drupal/Core/EventSubscriber/FinishResponseSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/FinishResponseSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\EventSubscriber\FinishResponseSubscriber.
+ * Definition of \Drupal\Core\EventSubscriber\FinishResponseSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/LegacyAccessSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/LegacyAccessSubscriber.php
index 566e82c..4ea3bde 100644
--- a/core/lib/Drupal/Core/EventSubscriber/LegacyAccessSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/LegacyAccessSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\EventSubscriber\LegacyAccessSubscriber.
+ * Contains \Drupal\Core\EventSubscriber\LegacyAccessSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/LegacyControllerSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/LegacyControllerSubscriber.php
index f88fa0e..f653a8d 100644
--- a/core/lib/Drupal/Core/EventSubscriber/LegacyControllerSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/LegacyControllerSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\EventSubscriber\LegacyControllerSubscriber.
+ * Definition of \Drupal\Core\EventSubscriber\LegacyControllerSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/LegacyRequestSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/LegacyRequestSubscriber.php
index 39828ef..4e886d0 100644
--- a/core/lib/Drupal/Core/EventSubscriber/LegacyRequestSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/LegacyRequestSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\EventSubscriber\LegacyRequestSubscriber.
+ * Definition of \Drupal\Core\EventSubscriber\LegacyRequestSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/PathListenerBase.php b/core/lib/Drupal/Core/EventSubscriber/PathListenerBase.php
index 385798c..cfba0a5 100644
--- a/core/lib/Drupal/Core/EventSubscriber/PathListenerBase.php
+++ b/core/lib/Drupal/Core/EventSubscriber/PathListenerBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\EventSubscriber\PathListenerBase.
+ * Definition of \Drupal\Core\EventSubscriber\PathListenerBase.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/PathSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/PathSubscriber.php
index a5dc955..073484a 100644
--- a/core/lib/Drupal/Core/EventSubscriber/PathSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/PathSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\EventSubscriber\PathSubscriber.
+ * Definition of \Drupal\Core\EventSubscriber\PathSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/RequestCloseSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/RequestCloseSubscriber.php
index 5f5d689..e74bca5 100644
--- a/core/lib/Drupal/Core/EventSubscriber/RequestCloseSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/RequestCloseSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\EventSubscriber\RequestCloseSubscriber.
+ * Definition of \Drupal\Core\EventSubscriber\RequestCloseSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/EventSubscriber/ViewSubscriber.php b/core/lib/Drupal/Core/EventSubscriber/ViewSubscriber.php
index fa4be98..0b0a1df 100644
--- a/core/lib/Drupal/Core/EventSubscriber/ViewSubscriber.php
+++ b/core/lib/Drupal/Core/EventSubscriber/ViewSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\EventSubscriber\ViewSubscriber.
+ * Definition of \Drupal\Core\EventSubscriber\ViewSubscriber.
  */
 
 namespace Drupal\Core\EventSubscriber;
diff --git a/core/lib/Drupal/Core/Extension/CachedModuleHandler.php b/core/lib/Drupal/Core/Extension/CachedModuleHandler.php
index 0e98472..acb910c 100644
--- a/core/lib/Drupal/Core/Extension/CachedModuleHandler.php
+++ b/core/lib/Drupal/Core/Extension/CachedModuleHandler.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Extension\CachedModuleHandler.
+ * Contains \Drupal\Core\Extension\CachedModuleHandler.
  */
 
 namespace Drupal\Core\Extension;
diff --git a/core/lib/Drupal/Core/Extension/CachedModuleHandlerInterface.php b/core/lib/Drupal/Core/Extension/CachedModuleHandlerInterface.php
index cca18dc..affcee3 100644
--- a/core/lib/Drupal/Core/Extension/CachedModuleHandlerInterface.php
+++ b/core/lib/Drupal/Core/Extension/CachedModuleHandlerInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Extension\CachedModuleHandlerInterface.
+ * Contains \Drupal\Core\Extension\CachedModuleHandlerInterface.
  */
 
 namespace Drupal\Core\Extension;
diff --git a/core/lib/Drupal/Core/Extension/ModuleHandler.php b/core/lib/Drupal/Core/Extension/ModuleHandler.php
index c510192..02b01a2 100644
--- a/core/lib/Drupal/Core/Extension/ModuleHandler.php
+++ b/core/lib/Drupal/Core/Extension/ModuleHandler.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Extension\ModuleHandler.
+ * Contains \Drupal\Core\Extension\ModuleHandler.
  */
 
 namespace Drupal\Core\Extension;
diff --git a/core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php b/core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php
index 44284b9..87d92bd 100644
--- a/core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php
+++ b/core/lib/Drupal/Core/Extension/ModuleHandlerInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Extension\ModuleHandlerInterface.
+ * Contains \Drupal\Core\Extension\ModuleHandlerInterface.
  */
 
 namespace Drupal\Core\Extension;
@@ -81,7 +81,7 @@ public function getBootstrapModules();
    *
    * @param array $modules
    *   An array of module objects keyed by module name. Each object contains
-   *   information discovered during a Drupal\Core\SystemListing scan.
+   *   information discovered during a \Drupal\Core\SystemListing scan.
    *
    * @return
    *   The same array with the new keys for each module:
diff --git a/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php b/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php
index c1c68cb..408eef1 100644
--- a/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php
+++ b/core/lib/Drupal/Core/FileTransfer/ChmodInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\ChmodInterface.
+ * Definition of \Drupal\Core\FileTransfer\ChmodInterface.
  */
 
 namespace Drupal\Core\FileTransfer;
diff --git a/core/lib/Drupal/Core/FileTransfer/FTP.php b/core/lib/Drupal/Core/FileTransfer/FTP.php
index 342660a..ac05c61 100644
--- a/core/lib/Drupal/Core/FileTransfer/FTP.php
+++ b/core/lib/Drupal/Core/FileTransfer/FTP.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\FTP.
+ * Definition of \Drupal\Core\FileTransfer\FTP.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -13,7 +13,7 @@
 abstract class FTP extends FileTransfer {
 
   /**
-   * Overrides Drupal\Core\FileTransfer\FileTransfer::__construct().
+   * Overrides \Drupal\Core\FileTransfer\FileTransfer::__construct().
    */
   public function __construct($jail, $username, $password, $hostname, $port) {
     $this->username = $username;
@@ -24,7 +24,7 @@ public function __construct($jail, $username, $password, $hostname, $port) {
   }
 
   /**
-   * Overrides Drupal\Core\FileTransfer\FileTransfer::factory().
+   * Overrides \Drupal\Core\FileTransfer\FileTransfer::factory().
    */
   static function factory($jail, $settings) {
     $username = empty($settings['username']) ? '' : $settings['username'];
@@ -43,7 +43,7 @@ static function factory($jail, $settings) {
   }
 
   /**
-   * Overrides Drupal\Core\FileTransfer\FileTransfer::getSettingsForm().
+   * Overrides \Drupal\Core\FileTransfer\FileTransfer::getSettingsForm().
    */
   public function getSettingsForm() {
     $form = parent::getSettingsForm();
diff --git a/core/lib/Drupal/Core/FileTransfer/FTPExtension.php b/core/lib/Drupal/Core/FileTransfer/FTPExtension.php
index f87293b..2ca9b10 100644
--- a/core/lib/Drupal/Core/FileTransfer/FTPExtension.php
+++ b/core/lib/Drupal/Core/FileTransfer/FTPExtension.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\FTPExtension.
+ * Definition of \Drupal\Core\FileTransfer\FTPExtension.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -13,7 +13,7 @@
 class FTPExtension extends FTP implements ChmodInterface {
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::connect().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::connect().
    */
   public function connect() {
     $this->connection = ftp_connect($this->hostname, $this->port);
@@ -27,7 +27,7 @@ public function connect() {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::copyFileJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::copyFileJailed().
    */
   protected function copyFileJailed($source, $destination) {
     if (!@ftp_put($this->connection,  $destination, $source, FTP_BINARY)) {
@@ -36,7 +36,7 @@ protected function copyFileJailed($source, $destination) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::createDirectoryJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::createDirectoryJailed().
    */
   protected function createDirectoryJailed($directory) {
     if (!ftp_mkdir($this->connection, $directory)) {
@@ -45,7 +45,7 @@ protected function createDirectoryJailed($directory) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::removeDirectoryJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::removeDirectoryJailed().
    */
   protected function removeDirectoryJailed($directory) {
     $pwd = ftp_pwd($this->connection);
@@ -75,7 +75,7 @@ protected function removeDirectoryJailed($directory) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::removeFileJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::removeFileJailed().
    */
   protected function removeFileJailed($destination) {
     if (!ftp_delete($this->connection, $destination)) {
@@ -84,7 +84,7 @@ protected function removeFileJailed($destination) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::isDirectory().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::isDirectory().
    */
   public function isDirectory($path) {
     $result = FALSE;
@@ -97,14 +97,14 @@ public function isDirectory($path) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::isFile().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::isFile().
    */
   public function isFile($path) {
     return ftp_size($this->connection, $path) != -1;
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\ChmodInterface::chmodJailed().
+   * Implements \Drupal\Core\FileTransfer\ChmodInterface::chmodJailed().
    */
   function chmodJailed($path, $mode, $recursive) {
     if (!ftp_chmod($this->connection, $mode, $path)) {
diff --git a/core/lib/Drupal/Core/FileTransfer/FileTransfer.php b/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
index 823e17e..9bc38c5 100644
--- a/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
+++ b/core/lib/Drupal/Core/FileTransfer/FileTransfer.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\FileTransfer.
+ * Definition of \Drupal\Core\FileTransfer\FileTransfer.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -50,7 +50,7 @@
   protected $port;
 
   /**
-   * Constructs a Drupal\Core\FileTransfer\FileTransfer object.
+   * Constructs a \Drupal\Core\FileTransfer\FileTransfer object.
    *
    * @param $jail
    *   The full path where all file operations performed by this object will
@@ -79,7 +79,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.');
@@ -140,7 +140,7 @@ function __get($name) {
    * @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
    */
@@ -211,7 +211,7 @@ function __get($name) {
    * @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/FileTransfer/FileTransferException.php b/core/lib/Drupal/Core/FileTransfer/FileTransferException.php
index bc32af8..1e194b1 100644
--- a/core/lib/Drupal/Core/FileTransfer/FileTransferException.php
+++ b/core/lib/Drupal/Core/FileTransfer/FileTransferException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\FileTransferException.
+ * Definition of \Drupal\Core\FileTransfer\FileTransferException.
  */
 
 namespace Drupal\Core\FileTransfer;
diff --git a/core/lib/Drupal/Core/FileTransfer/Local.php b/core/lib/Drupal/Core/FileTransfer/Local.php
index 92ddcd9..453fc78 100644
--- a/core/lib/Drupal/Core/FileTransfer/Local.php
+++ b/core/lib/Drupal/Core/FileTransfer/Local.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\Local.
+ * Definition of \Drupal\Core\FileTransfer\Local.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -16,21 +16,21 @@
 class Local extends FileTransfer implements ChmodInterface {
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::connect().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::connect().
    */
   function connect() {
     // No-op
   }
 
   /**
-   * Overrides Drupal\Core\FileTransfer\FileTransfer::factory().
+   * Overrides \Drupal\Core\FileTransfer\FileTransfer::factory().
    */
   static function factory($jail, $settings) {
     return new Local($jail);
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::copyFileJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::copyFileJailed().
    */
   protected function copyFileJailed($source, $destination) {
     if (@!copy($source, $destination)) {
@@ -39,7 +39,7 @@ protected function copyFileJailed($source, $destination) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::createDirectoryJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::createDirectoryJailed().
    */
   protected function createDirectoryJailed($directory) {
     if (!is_dir($directory) && @!mkdir($directory, 0777, TRUE)) {
@@ -48,7 +48,7 @@ protected function createDirectoryJailed($directory) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::removeDirectoryJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::removeDirectoryJailed().
    */
   protected function removeDirectoryJailed($directory) {
     if (!is_dir($directory)) {
@@ -73,7 +73,7 @@ protected function removeDirectoryJailed($directory) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::removeFileJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::removeFileJailed().
    */
   protected function removeFileJailed($file) {
     if (@!drupal_unlink($file)) {
@@ -82,21 +82,21 @@ protected function removeFileJailed($file) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::isDirectory().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::isDirectory().
    */
   public function isDirectory($path) {
     return is_dir($path);
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::isFile().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::isFile().
    */
   public function isFile($path) {
     return is_file($path);
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\ChmodInterface::chmodJailed().
+   * Implements \Drupal\Core\FileTransfer\ChmodInterface::chmodJailed().
    */
   public function chmodJailed($path, $mode, $recursive) {
     if ($recursive && is_dir($path)) {
diff --git a/core/lib/Drupal/Core/FileTransfer/SSH.php b/core/lib/Drupal/Core/FileTransfer/SSH.php
index 82edcda..7702bb9 100644
--- a/core/lib/Drupal/Core/FileTransfer/SSH.php
+++ b/core/lib/Drupal/Core/FileTransfer/SSH.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\FileTransfer\SSH.
+ * Definition of \Drupal\Core\FileTransfer\SSH.
  */
 
 namespace Drupal\Core\FileTransfer;
@@ -13,7 +13,7 @@
 class SSH extends FileTransfer implements ChmodInterface {
 
   /**
-   * Overrides Drupal\Core\FileTransfer\FileTransfer::__construct().
+   * Overrides \Drupal\Core\FileTransfer\FileTransfer::__construct().
    */
   function __construct($jail, $username, $password, $hostname = "localhost", $port = 22) {
     $this->username = $username;
@@ -24,7 +24,7 @@ function __construct($jail, $username, $password, $hostname = "localhost", $port
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::connect().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::connect().
    */
   function connect() {
     $this->connection = @ssh2_connect($this->hostname, $this->port);
@@ -37,7 +37,7 @@ function connect() {
   }
 
   /**
-   * Overrides Drupal\Core\FileTransfer\FileTransfer::factory().
+   * Overrides \Drupal\Core\FileTransfer\FileTransfer::factory().
    */
   static function factory($jail, $settings) {
     $username = empty($settings['username']) ? '' : $settings['username'];
@@ -48,7 +48,7 @@ static function factory($jail, $settings) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::copyFileJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::copyFileJailed().
    */
   protected function copyFileJailed($source, $destination) {
     if (!@ssh2_scp_send($this->connection, $source, $destination)) {
@@ -57,7 +57,7 @@ protected function copyFileJailed($source, $destination) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::copyDirectoryJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::copyDirectoryJailed().
    */
   protected function copyDirectoryJailed($source, $destination) {
     if (@!ssh2_exec($this->connection, 'cp -Rp ' . escapeshellarg($source) . ' ' . escapeshellarg($destination))) {
@@ -66,7 +66,7 @@ protected function copyDirectoryJailed($source, $destination) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::createDirectoryJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::createDirectoryJailed().
    */
   protected function createDirectoryJailed($directory) {
     if (@!ssh2_exec($this->connection, 'mkdir ' . escapeshellarg($directory))) {
@@ -75,7 +75,7 @@ protected function createDirectoryJailed($directory) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::removeDirectoryJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::removeDirectoryJailed().
    */
   protected function removeDirectoryJailed($directory) {
     if (@!ssh2_exec($this->connection, 'rm -Rf ' . escapeshellarg($directory))) {
@@ -84,7 +84,7 @@ protected function removeDirectoryJailed($directory) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::removeFileJailed().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::removeFileJailed().
    */
   protected function removeFileJailed($destination) {
     if (!@ssh2_exec($this->connection, 'rm ' . escapeshellarg($destination))) {
@@ -93,7 +93,7 @@ protected function removeFileJailed($destination) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::isDirectory().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::isDirectory().
    *
    * WARNING: This is untested. It is not currently used, but should do the
    * trick.
@@ -113,7 +113,7 @@ public function isDirectory($path) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\FileTransfer::isFile().
+   * Implements \Drupal\Core\FileTransfer\FileTransfer::isFile().
    */
   public function isFile($path) {
     $file = escapeshellarg($path);
@@ -130,7 +130,7 @@ public function isFile($path) {
   }
 
   /**
-   * Implements Drupal\Core\FileTransfer\ChmodInterface::chmodJailed().
+   * Implements \Drupal\Core\FileTransfer\ChmodInterface::chmodJailed().
    */
   function chmodJailed($path, $mode, $recursive) {
     $cmd = sprintf("chmod %s%o %s", $recursive ? '-R ' : '', $mode, escapeshellarg($path));
@@ -140,7 +140,7 @@ function chmodJailed($path, $mode, $recursive) {
   }
 
   /**
-   * Overrides Drupal\Core\FileTransfer\FileTransfer::getSettingsForm().
+   * Overrides \Drupal\Core\FileTransfer\FileTransfer::getSettingsForm().
    */
   public function getSettingsForm() {
     $form = parent::getSettingsForm();
diff --git a/core/lib/Drupal/Core/Flood/DatabaseBackend.php b/core/lib/Drupal/Core/Flood/DatabaseBackend.php
index 0bc30d1..81bda9e 100644
--- a/core/lib/Drupal/Core/Flood/DatabaseBackend.php
+++ b/core/lib/Drupal/Core/Flood/DatabaseBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Flood\DatabaseBackend.
+ * Definition of \Drupal\Core\Flood\DatabaseBackend.
  */
 
 namespace Drupal\Core\Flood;
@@ -44,7 +44,7 @@ public function __construct(Connection $connection, Request $request) {
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::register().
+   * Implements \Drupal\Core\Flood\FloodInterface::register().
    */
   public function register($name, $window = 3600, $identifier = NULL) {
     if (!isset($identifier)) {
@@ -61,7 +61,7 @@ public function register($name, $window = 3600, $identifier = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::clear().
+   * Implements \Drupal\Core\Flood\FloodInterface::clear().
    */
   public function clear($name, $identifier = NULL) {
     if (!isset($identifier)) {
@@ -74,7 +74,7 @@ public function clear($name, $identifier = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::isAllowed().
+   * Implements \Drupal\Core\Flood\FloodInterface::isAllowed().
    */
   public function isAllowed($name, $threshold, $window = 3600, $identifier = NULL) {
     if (!isset($identifier)) {
@@ -91,7 +91,7 @@ public function isAllowed($name, $threshold, $window = 3600, $identifier = NULL)
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::garbageCollection().
+   * Implements \Drupal\Core\Flood\FloodInterface::garbageCollection().
    */
   public function garbageCollection() {
     return $this->connection->delete('flood')
diff --git a/core/lib/Drupal/Core/Flood/FloodInterface.php b/core/lib/Drupal/Core/Flood/FloodInterface.php
index 8fd36db..64d48d6 100644
--- a/core/lib/Drupal/Core/Flood/FloodInterface.php
+++ b/core/lib/Drupal/Core/Flood/FloodInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Flood\FloodInterface.
+ * Definition of \Drupal\Core\Flood\FloodInterface.
  */
 
 namespace Drupal\Core\Flood;
diff --git a/core/lib/Drupal/Core/Flood/MemoryBackend.php b/core/lib/Drupal/Core/Flood/MemoryBackend.php
index 13ab55a..d2954c1 100644
--- a/core/lib/Drupal/Core/Flood/MemoryBackend.php
+++ b/core/lib/Drupal/Core/Flood/MemoryBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Flood\MemoryBackend.
+ * Definition of \Drupal\Core\Flood\MemoryBackend.
  */
 
 namespace Drupal\Core\Flood;
@@ -37,7 +37,7 @@ public function __construct(Request $request) {
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::register().
+   * Implements \Drupal\Core\Flood\FloodInterface::register().
    */
   public function register($name, $window = 3600, $identifier = NULL) {
     if (!isset($identifier)) {
@@ -50,7 +50,7 @@ public function register($name, $window = 3600, $identifier = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::clear().
+   * Implements \Drupal\Core\Flood\FloodInterface::clear().
    */
   public function clear($name, $identifier = NULL) {
     if (!isset($identifier)) {
@@ -60,7 +60,7 @@ public function clear($name, $identifier = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::isAllowed().
+   * Implements \Drupal\Core\Flood\FloodInterface::isAllowed().
    */
   public function isAllowed($name, $threshold, $window = 3600, $identifier = NULL) {
     if (!isset($identifier)) {
@@ -74,7 +74,7 @@ public function isAllowed($name, $threshold, $window = 3600, $identifier = NULL)
   }
 
   /**
-   * Implements Drupal\Core\Flood\FloodInterface::garbageCollection().
+   * Implements \Drupal\Core\Flood\FloodInterface::garbageCollection().
    */
   public function garbageCollection() {
     foreach ($this->events as $name => $identifiers) {
diff --git a/core/lib/Drupal/Core/Http/Plugin/SimpletestHttpRequestSubscriber.php b/core/lib/Drupal/Core/Http/Plugin/SimpletestHttpRequestSubscriber.php
index 6f5bfd1..46507cb 100644
--- a/core/lib/Drupal/Core/Http/Plugin/SimpletestHttpRequestSubscriber.php
+++ b/core/lib/Drupal/Core/Http/Plugin/SimpletestHttpRequestSubscriber.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Contains Drupal\Core\Http\Plugin\SimpletestHttpRequestSubscriber
+ * Contains \Drupal\Core\Http\Plugin\SimpletestHttpRequestSubscriber
  */
 
 namespace Drupal\Core\Http\Plugin;
diff --git a/core/lib/Drupal/Core/HttpKernel.php b/core/lib/Drupal/Core/HttpKernel.php
index 07c79c7..e8b7af2 100644
--- a/core/lib/Drupal/Core/HttpKernel.php
+++ b/core/lib/Drupal/Core/HttpKernel.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\HttpKernel.
+ * Definition of \Drupal\Core\HttpKernel.
  *
  * @todo This file is copied verbatim, with the exception of the namespace
  * change and this commment block, from Symfony full stack's FrameworkBundle.
diff --git a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php
index 4045c48..0b670bb 100644
--- a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php
+++ b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\DatabaseStorage.
+ * Contains \Drupal\Core\KeyValueStore\DatabaseStorage.
  */
 
 namespace Drupal\Core\KeyValueStore;
@@ -33,7 +33,7 @@ class DatabaseStorage extends StorageBase {
   protected $table;
 
   /**
-   * Overrides Drupal\Core\KeyValueStore\StorageBase::__construct().
+   * Overrides \Drupal\Core\KeyValueStore\StorageBase::__construct().
    *
    * @param string $collection
    *   The name of the collection holding key and value pairs.
@@ -47,7 +47,7 @@ public function __construct($collection, Connection $connection, $table = 'key_v
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
    */
   public function getMultiple(array $keys) {
     $values = array();
@@ -68,7 +68,7 @@ public function getMultiple(array $keys) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
    */
   public function getAll() {
     $result = $this->connection->query('SELECT name, value FROM {' . $this->connection->escapeTable($this->table) . '} WHERE collection = :collection', array(':collection' => $this->collection));
@@ -83,7 +83,7 @@ public function getAll() {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::set().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::set().
    */
   public function set($key, $value) {
     $this->connection->merge($this->table)
@@ -96,7 +96,7 @@ public function set($key, $value) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::setIfNotExists().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::setIfNotExists().
    */
   public function setIfNotExists($key, $value) {
     $result = $this->connection->merge($this->table)
@@ -112,7 +112,7 @@ public function setIfNotExists($key, $value) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
    */
   public function deleteMultiple(array $keys) {
     // Delete in chunks when a large array is passed.
@@ -126,7 +126,7 @@ public function deleteMultiple(array $keys) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteAll().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteAll().
    */
   public function deleteAll() {
     $this->connection->delete($this->table)
diff --git a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php
index 93cca8b..7b442fe 100644
--- a/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php
+++ b/core/lib/Drupal/Core/KeyValueStore/DatabaseStorageExpirable.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\DatabaseStorageExpirable.
+ * Contains \Drupal\Core\KeyValueStore\DatabaseStorageExpirable.
  */
 
 namespace Drupal\Core\KeyValueStore;
@@ -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;
 
@@ -40,7 +40,7 @@ class DatabaseStorageExpirable extends DatabaseStorage implements KeyValueStoreE
   protected $needsGarbageCollection = FALSE;
 
   /**
-   * Overrides Drupal\Core\KeyValueStore\StorageBase::__construct().
+   * Overrides \Drupal\Core\KeyValueStore\StorageBase::__construct().
    *
    * @param string $collection
    *   The name of the collection holding key and value pairs.
@@ -57,7 +57,7 @@ public function __construct($collection, Connection $connection, $table = 'key_v
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
    */
   public function getMultiple(array $keys) {
     $values = $this->connection->query(
@@ -71,7 +71,7 @@ public function getMultiple(array $keys) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
    */
   public function getAll() {
     $values = $this->connection->query(
@@ -84,7 +84,7 @@ public function getAll() {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreExpireInterface::setWithExpire().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreExpireInterface::setWithExpire().
    */
   function setWithExpire($key, $value, $expire) {
     // We are already writing to the table, so perform garbage collection at
@@ -103,7 +103,7 @@ function setWithExpire($key, $value, $expire) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpireIfNotExists().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpireIfNotExists().
    */
   function setWithExpireIfNotExists($key, $value, $expire) {
     // We are already writing to the table, so perform garbage collection at
@@ -123,7 +123,7 @@ function setWithExpireIfNotExists($key, $value, $expire) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreExpirablInterface::setMultipleWithExpire().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreExpirablInterface::setMultipleWithExpire().
    */
   function setMultipleWithExpire(array $data, $expire) {
     foreach ($data as $key => $value) {
@@ -132,7 +132,7 @@ function setMultipleWithExpire(array $data, $expire) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
    */
   public function deleteMultiple(array $keys) {
     // We are already writing to the table, so perform garbage collection at
@@ -151,7 +151,7 @@ protected function garbageCollection() {
   }
 
   /**
-   * Implements Drupal\Core\DestructableInterface::destruct().
+   * Implements \Drupal\Core\DestructableInterface::destruct().
    */
   public function destruct() {
     if ($this->needsGarbageCollection) {
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseExpirableFactory.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseExpirableFactory.php
index 0d63988..2a6f3db 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseExpirableFactory.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseExpirableFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\KeyValueDatabaseExpirableFactory.
+ * Contains \Drupal\Core\KeyValueStore\KeyValueDatabaseExpirableFactory.
  */
 
 namespace Drupal\Core\KeyValueStore;
@@ -42,7 +42,7 @@ public function get($collection) {
   }
 
   /**
-   * Implements Drupal\Core\DestructableInterface::terminate().
+   * Implements \Drupal\Core\DestructableInterface::terminate().
    */
   public function destruct() {
     foreach ($this->storages as $storage) {
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseFactory.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseFactory.php
index ded528e..d05a675 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseFactory.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\KeyValueDatabaseFactory.
+ * Contains \Drupal\Core\KeyValueStore\KeyValueDatabaseFactory.
  */
 
 namespace Drupal\Core\KeyValueStore;
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueExpirableFactory.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueExpirableFactory.php
index 8747e53..ac8182e 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueExpirableFactory.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueExpirableFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\KeyValueExpirableFactory.
+ * Contains \Drupal\Core\KeyValueStore\KeyValueExpirableFactory.
  */
 
 namespace Drupal\Core\KeyValueStore;
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueFactory.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueFactory.php
index 4e3f0a7..399b26d 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueFactory.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\KeyValueFactory.
+ * Contains \Drupal\Core\KeyValueStore\KeyValueFactory.
  */
 
 namespace Drupal\Core\KeyValueStore;
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php
index 95c21be..c496ba5 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueMemoryFactory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\KeyValueMemoryFactory.
+ * Contains \Drupal\Core\KeyValueStore\KeyValueMemoryFactory.
  */
 
 namespace Drupal\Core\KeyValueStore;
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php
index e39dbe5..10e8a05 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreExpirableInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface.
+ * Contains \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface.
  */
 
 namespace Drupal\Core\KeyValueStore;
diff --git a/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreInterface.php b/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreInterface.php
index 372ffc5..5bde69f 100644
--- a/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreInterface.php
+++ b/core/lib/Drupal/Core/KeyValueStore/KeyValueStoreInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\KeyValueStoreInterface.
+ * Contains \Drupal\Core\KeyValueStore\KeyValueStoreInterface.
  */
 
 namespace Drupal\Core\KeyValueStore;
diff --git a/core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php b/core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php
index 236b0aa..676d7ff 100644
--- a/core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php
+++ b/core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\MemoryStorage.
+ * Contains \Drupal\Core\KeyValueStore\MemoryStorage.
  */
 
 namespace Drupal\Core\KeyValueStore;
@@ -20,35 +20,35 @@ class MemoryStorage extends StorageBase {
   protected $data = array();
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::get().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::get().
    */
   public function get($key) {
     return array_key_exists($key, $this->data) ? $this->data[$key] : NULL;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
    */
   public function getMultiple(array $keys) {
     return array_intersect_key($this->data, array_flip($keys));
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
    */
   public function getAll() {
     return $this->data;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::set().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::set().
    */
   public function set($key, $value) {
     $this->data[$key] = $value;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::setIfNotExists().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::setIfNotExists().
    */
   public function setIfNotExists($key, $value) {
     if (!isset($this->data[$key])) {
@@ -59,21 +59,21 @@ public function setIfNotExists($key, $value) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::setMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::setMultiple().
    */
   public function setMultiple(array $data) {
     $this->data = $data + $this->data;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::delete().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::delete().
    */
   public function delete($key) {
     unset($this->data[$key]);
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
    */
   public function deleteMultiple(array $keys) {
     foreach ($keys as $key) {
@@ -82,7 +82,7 @@ public function deleteMultiple(array $keys) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteAll().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteAll().
    */
   public function deleteAll() {
     $this->data = array();
diff --git a/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php b/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
index d66ab59..cb00378 100644
--- a/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
+++ b/core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php
@@ -34,75 +34,75 @@ public function __construct($collection) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::get().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::get().
    */
   public function get($key) {
     return NULL;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getMultiple().
    */
   public function getMultiple(array $keys) {
     return array();
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getAll().
    */
   public function getAll() {
     return array();
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::set().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::set().
    */
   public function set($key, $value) { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::setIfNotExists().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::setIfNotExists().
    */
   public function setIfNotExists($key, $value) { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::setMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::setMultiple().
    */
   public function setMultiple(array $data) { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::delete().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::delete().
    */
   public function delete($key) { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteMultiple().
    */
   public function deleteMultiple(array $keys) { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteAll().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::deleteAll().
    */
   public function deleteAll() { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getCollectionName().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getCollectionName().
    */
   public function getCollectionName() {
     return $this->collection;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setMultipleWithExpire().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setMultipleWithExpire().
    */
   public function setMultipleWithExpire(array $data, $expire) { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpire().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpire().
    */
   public function setWithExpire($key, $value, $expire) { }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpireIfNotExists().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreExpirableInterface::setWithExpireIfNotExists().
    */
   public function setWithExpireIfNotExists($key, $value, $expire) { }
 
diff --git a/core/lib/Drupal/Core/KeyValueStore/StorageBase.php b/core/lib/Drupal/Core/KeyValueStore/StorageBase.php
index 6b64398..3d571af 100644
--- a/core/lib/Drupal/Core/KeyValueStore/StorageBase.php
+++ b/core/lib/Drupal/Core/KeyValueStore/StorageBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\KeyValueStore\StorageBase.
+ * Contains \Drupal\Core\KeyValueStore\StorageBase.
  */
 
 namespace Drupal\Core\KeyValueStore;
@@ -20,21 +20,21 @@
   protected $collection;
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::__construct().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::__construct().
    */
   public function __construct($collection) {
     $this->collection = $collection;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::getCollectionName().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::getCollectionName().
    */
   public function getCollectionName() {
     return $this->collection;
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::get().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::get().
    */
   public function get($key) {
     $values = $this->getMultiple(array($key));
@@ -42,7 +42,7 @@ public function get($key) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::setMultiple().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::setMultiple().
    */
   public function setMultiple(array $data) {
     foreach ($data as $key => $value) {
@@ -51,7 +51,7 @@ public function setMultiple(array $data) {
   }
 
   /**
-   * Implements Drupal\Core\KeyValueStore\KeyValueStoreInterface::delete().
+   * Implements \Drupal\Core\KeyValueStore\KeyValueStoreInterface::delete().
    */
   public function delete($key) {
     $this->deleteMultiple(array($key));
diff --git a/core/lib/Drupal/Core/Language/Language.php b/core/lib/Drupal/Core/Language/Language.php
index 01eb199..7a6aa36 100644
--- a/core/lib/Drupal/Core/Language/Language.php
+++ b/core/lib/Drupal/Core/Language/Language.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Language\Language.
+ * Definition of \Drupal\Core\Language\Language.
  */
 
 namespace Drupal\Core\Language;
diff --git a/core/lib/Drupal/Core/Language/LanguageManager.php b/core/lib/Drupal/Core/Language/LanguageManager.php
index 01f1d50..b95e09c 100644
--- a/core/lib/Drupal/Core/Language/LanguageManager.php
+++ b/core/lib/Drupal/Core/Language/LanguageManager.php
@@ -152,7 +152,7 @@ protected function getLanguageTypes() {
   /**
    * Returns a language object representing the site's default language.
    *
-   * @return Drupal\Core\Language\Language
+   * @return \Drupal\Core\Language\Language
    *   A language object.
    */
   protected function getLanguageDefault() {
diff --git a/core/lib/Drupal/Core/LegacyUrlMatcher.php b/core/lib/Drupal/Core/LegacyUrlMatcher.php
index 80d6ae8..8078f9b 100644
--- a/core/lib/Drupal/Core/LegacyUrlMatcher.php
+++ b/core/lib/Drupal/Core/LegacyUrlMatcher.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\LegacyUrlMatcher.
+ * Definition of \Drupal\Core\LegacyUrlMatcher.
  */
 
 namespace Drupal\Core;
diff --git a/core/lib/Drupal/Core/Lock/DatabaseLockBackend.php b/core/lib/Drupal/Core/Lock/DatabaseLockBackend.php
index eef63b4..ed36ad1 100644
--- a/core/lib/Drupal/Core/Lock/DatabaseLockBackend.php
+++ b/core/lib/Drupal/Core/Lock/DatabaseLockBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Lock\DatabaseLockBackend.
+ * Definition of \Drupal\Core\Lock\DatabaseLockBackend.
  */
 
 namespace Drupal\Core\Lock;
@@ -24,7 +24,7 @@ public function __construct() {
   }
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::acquire().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::acquire().
    */
   public function acquire($name, $timeout = 30.0) {
     // Insure that the timeout is at least 1 ms.
@@ -78,7 +78,7 @@ public function acquire($name, $timeout = 30.0) {
   }
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::lockMayBeAvailable().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::lockMayBeAvailable().
    */
   public function lockMayBeAvailable($name) {
     $lock = db_query('SELECT expire, value FROM {semaphore} WHERE name = :name', array(':name' => $name))->fetchAssoc();
@@ -101,7 +101,7 @@ public function lockMayBeAvailable($name) {
   }
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::release().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::release().
    */
   public function release($name) {
     unset($this->locks[$name]);
@@ -112,7 +112,7 @@ public function release($name) {
   }
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::releaseAll().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::releaseAll().
    */
   public function releaseAll($lock_id = NULL) {
     // Only attempt to release locks if any were acquired.
diff --git a/core/lib/Drupal/Core/Lock/LockBackendAbstract.php b/core/lib/Drupal/Core/Lock/LockBackendAbstract.php
index f6ca89c..80524c5 100644
--- a/core/lib/Drupal/Core/Lock/LockBackendAbstract.php
+++ b/core/lib/Drupal/Core/Lock/LockBackendAbstract.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Lock\LockBackendAbstract.
+ * Definition of \Drupal\Core\Lock\LockBackendAbstract.
  */
 
 namespace Drupal\Core\Lock;
@@ -27,7 +27,7 @@
   protected $locks = array();
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::wait().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::wait().
    */
   public function wait($name, $delay = 30) {
     // Pause the process for short periods between calling
@@ -66,7 +66,7 @@ public function wait($name, $delay = 30) {
   }
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::getLockId().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::getLockId().
    */
   public function getLockId() {
     if (!isset($this->lockId)) {
diff --git a/core/lib/Drupal/Core/Lock/LockBackendInterface.php b/core/lib/Drupal/Core/Lock/LockBackendInterface.php
index 01ca219..acdbd66 100644
--- a/core/lib/Drupal/Core/Lock/LockBackendInterface.php
+++ b/core/lib/Drupal/Core/Lock/LockBackendInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Lock\LockBackendInterface.
+ * Definition of \Drupal\Core\Lock\LockBackendInterface.
  */
 
 namespace Drupal\Core\Lock;
diff --git a/core/lib/Drupal/Core/Lock/NullLockBackend.php b/core/lib/Drupal/Core/Lock/NullLockBackend.php
index bd59888..41c425f 100644
--- a/core/lib/Drupal/Core/Lock/NullLockBackend.php
+++ b/core/lib/Drupal/Core/Lock/NullLockBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Lock\NullLockBackend.
+ * Definition of \Drupal\Core\Lock\NullLockBackend.
  */
 
 namespace Drupal\Core\Lock;
@@ -23,36 +23,36 @@ class NullLockBackend implements LockBackendInterface {
   protected $lockId;
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::acquire().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::acquire().
    */
   public function acquire($name, $timeout = 30.0) {
     return TRUE;
   }
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::lockMayBeAvailable().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::lockMayBeAvailable().
    */
   public function lockMayBeAvailable($name) {
     return TRUE;
   }
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::wait().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::wait().
    */
   public function wait($name, $delay = 30) {}
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::release().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::release().
    */
   public function release($name) {}
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::releaseAll().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::releaseAll().
    */
   public function releaseAll($lock_id = NULL) {}
 
   /**
-   * Implements Drupal\Core\Lock\LockBackedInterface::getLockId().
+   * Implements \Drupal\Core\Lock\LockBackedInterface::getLockId().
    */
   public function getLockId() {
     if (!isset($this->lockId)) {
diff --git a/core/lib/Drupal/Core/Mail/MailInterface.php b/core/lib/Drupal/Core/Mail/MailInterface.php
index 3485cfd..2dab3d9 100644
--- a/core/lib/Drupal/Core/Mail/MailInterface.php
+++ b/core/lib/Drupal/Core/Mail/MailInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Mail\MailInterface.
+ * Definition of \Drupal\Core\Mail\MailInterface.
  */
 
 namespace Drupal\Core\Mail;
diff --git a/core/lib/Drupal/Core/Mail/PhpMail.php b/core/lib/Drupal/Core/Mail/PhpMail.php
index 580a824..41a2e60 100644
--- a/core/lib/Drupal/Core/Mail/PhpMail.php
+++ b/core/lib/Drupal/Core/Mail/PhpMail.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Mail\PhpMail.
+ * Definition of \Drupal\Core\Mail\PhpMail.
  */
 
 namespace Drupal\Core\Mail;
diff --git a/core/lib/Drupal/Core/Mail/VariableLog.php b/core/lib/Drupal/Core/Mail/VariableLog.php
index c7b5201..0776a84 100644
--- a/core/lib/Drupal/Core/Mail/VariableLog.php
+++ b/core/lib/Drupal/Core/Mail/VariableLog.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Mail\VariableLog.
+ * Definition of \Drupal\Core\Mail\VariableLog.
  */
 
 namespace Drupal\Core\Mail;
@@ -16,7 +16,7 @@
 class VariableLog extends PhpMail implements MailInterface {
 
   /**
-   * Overrides Drupal\Core\Mail\PhpMail::mail().
+   * Overrides \Drupal\Core\Mail\PhpMail::mail().
    *
    * Accepts an e-mail message and store it in a variable.
    */
diff --git a/core/lib/Drupal/Core/ParamConverter/EntityConverter.php b/core/lib/Drupal/Core/ParamConverter/EntityConverter.php
index f28906f..aa664a3 100644
--- a/core/lib/Drupal/Core/ParamConverter/EntityConverter.php
+++ b/core/lib/Drupal/Core/ParamConverter/EntityConverter.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\ParamConverter\EntityConverter.
+ * Contains \Drupal\Core\ParamConverter\EntityConverter.
  */
 
 namespace Drupal\Core\ParamConverter;
diff --git a/core/lib/Drupal/Core/ParamConverter/ParamConverterInterface.php b/core/lib/Drupal/Core/ParamConverter/ParamConverterInterface.php
index 74307c2..df8e6f4 100644
--- a/core/lib/Drupal/Core/ParamConverter/ParamConverterInterface.php
+++ b/core/lib/Drupal/Core/ParamConverter/ParamConverterInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\ParamConverter\ParamConverterInterface.
+ * Contains \Drupal\Core\ParamConverter\ParamConverterInterface.
  */
 
 namespace Drupal\Core\ParamConverter;
diff --git a/core/lib/Drupal/Core/ParamConverter/ParamConverterManager.php b/core/lib/Drupal/Core/ParamConverter/ParamConverterManager.php
index be5676e..b6e02ee 100644
--- a/core/lib/Drupal/Core/ParamConverter/ParamConverterManager.php
+++ b/core/lib/Drupal/Core/ParamConverter/ParamConverterManager.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\ParamConverter\ParamConverterManager.
+ * Contains \Drupal\Core\ParamConverter\ParamConverterManager.
  */
 
 namespace Drupal\Core\ParamConverter;
diff --git a/core/lib/Drupal/Core/Password/PasswordInterface.php b/core/lib/Drupal/Core/Password/PasswordInterface.php
index e14a6d8..7acfb8f 100644
--- a/core/lib/Drupal/Core/Password/PasswordInterface.php
+++ b/core/lib/Drupal/Core/Password/PasswordInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Password\PasswordInterface
+ * Definition of \Drupal\Core\Password\PasswordInterface
  */
 
 namespace Drupal\Core\Password;
@@ -32,7 +32,7 @@ public function hash($password);
    *
    * @param string $password
    *   A plain-text password
-   * @param Drupal\user\User
+   * @param \Drupal\user\User
    *   A user object with at least the fields from the {users} table.
    *
    * @return bolean.
@@ -53,7 +53,7 @@ public function check($password, $account);
    * Alternative implementations of this function might use other criteria based
    * on the fields in $account.
    *
-   * @param Drupal\user\User
+   * @param \Drupal\user\User
    *   A user object with at least the fields from the {users} table.
    *
    * @return boolean
diff --git a/core/lib/Drupal/Core/Password/PhpassHashedPassword.php b/core/lib/Drupal/Core/Password/PhpassHashedPassword.php
index e14ab4b..c82c0c1 100644
--- a/core/lib/Drupal/Core/Password/PhpassHashedPassword.php
+++ b/core/lib/Drupal/Core/Password/PhpassHashedPassword.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Password\PhpassHashedPassword
+ * Definition of \Drupal\Core\Password\PhpassHashedPassword
  */
 
 namespace Drupal\Core\Password;
@@ -205,14 +205,14 @@ public function getCountLog2($setting) {
   }
 
   /**
-   * Implements Drupal\Core\Password\PasswordInterface::hash().
+   * Implements \Drupal\Core\Password\PasswordInterface::hash().
    */
   public function hash($password) {
     return $this->crypt('sha512', $password, $this->generateSalt());
   }
 
   /**
-   * Implements Drupal\Core\Password\PasswordInterface::checkPassword().
+   * Implements \Drupal\Core\Password\PasswordInterface::checkPassword().
    */
   public function check($password, $account) {
     if (substr($account->pass, 0, 2) == 'U$') {
@@ -246,7 +246,7 @@ public function check($password, $account) {
   }
 
   /**
-   * Implements Drupal\Core\Password\PasswordInterface::userNeedsNewHash().
+   * Implements \Drupal\Core\Password\PasswordInterface::userNeedsNewHash().
    */
   public function userNeedsNewHash($account) {
     // Check whether this was an updated password.
diff --git a/core/lib/Drupal/Core/Path/AliasManager.php b/core/lib/Drupal/Core/Path/AliasManager.php
index 17657e0..a8d6b12 100644
--- a/core/lib/Drupal/Core/Path/AliasManager.php
+++ b/core/lib/Drupal/Core/Path/AliasManager.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Path\AliasManager.
+ * Contains \Drupal\Core\Path\AliasManager.
  */
 
 namespace Drupal\Core\Path;
diff --git a/core/lib/Drupal/Core/Path/AliasManagerInterface.php b/core/lib/Drupal/Core/Path/AliasManagerInterface.php
index 3dedd3e..84dfdc4 100644
--- a/core/lib/Drupal/Core/Path/AliasManagerInterface.php
+++ b/core/lib/Drupal/Core/Path/AliasManagerInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Path\AliasManagerInterface.
+ * Contains \Drupal\Core\Path\AliasManagerInterface.
  */
 
 namespace Drupal\Core\Path;
diff --git a/core/lib/Drupal/Core/Path/Path.php b/core/lib/Drupal/Core/Path/Path.php
index 4a3410f..38ca258 100644
--- a/core/lib/Drupal/Core/Path/Path.php
+++ b/core/lib/Drupal/Core/Path/Path.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Path\Path.
+ * Contains \Drupal\Core\Path\Path.
  */
 
 namespace Drupal\Core\Path;
diff --git a/core/lib/Drupal/Core/PathProcessor/InboundPathProcessorInterface.php b/core/lib/Drupal/Core/PathProcessor/InboundPathProcessorInterface.php
index 946b29c..30f5a2b 100644
--- a/core/lib/Drupal/Core/PathProcessor/InboundPathProcessorInterface.php
+++ b/core/lib/Drupal/Core/PathProcessor/InboundPathProcessorInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\PathProcessor\InboundPathProcessorInterface.
+ * Contains \Drupal\Core\PathProcessor\InboundPathProcessorInterface.
  */
 
 namespace Drupal\Core\PathProcessor;
diff --git a/core/lib/Drupal/Core/PathProcessor/OutboundPathProcessorInterface.php b/core/lib/Drupal/Core/PathProcessor/OutboundPathProcessorInterface.php
index 347a877..b713376 100644
--- a/core/lib/Drupal/Core/PathProcessor/OutboundPathProcessorInterface.php
+++ b/core/lib/Drupal/Core/PathProcessor/OutboundPathProcessorInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\PathProcessor\OutboundPathProcessorInterface.
+ * Contains \Drupal\Core\PathProcessor\OutboundPathProcessorInterface.
  */
 
 namespace Drupal\Core\PathProcessor;
diff --git a/core/lib/Drupal/Core/PathProcessor/PathProcessorAlias.php b/core/lib/Drupal/Core/PathProcessor/PathProcessorAlias.php
index c663cf1..af1b25c 100644
--- a/core/lib/Drupal/Core/PathProcessor/PathProcessorAlias.php
+++ b/core/lib/Drupal/Core/PathProcessor/PathProcessorAlias.php
@@ -33,7 +33,7 @@ public function __construct(AliasManagerInterface $alias_manager) {
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
+   * Implements \Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
    */
   public function processInbound($path, Request $request) {
     $path = $this->aliasManager->getSystemPath($path);
@@ -41,7 +41,7 @@ public function processInbound($path, Request $request) {
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
+   * Implements \Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
    */
   public function processOutbound($path, &$options = array(), Request $request = NULL) {
     $langcode = isset($options['language']) ? $options['language']->langcode : NULL;
diff --git a/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php b/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php
index 0674cda..396d6f8 100644
--- a/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php
+++ b/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\PathProcessor\PathProcessorDecode.
+ * Contains \Drupal\Core\PathProcessor\PathProcessorDecode.
  */
 
 namespace Drupal\Core\PathProcessor;
@@ -26,7 +26,7 @@
 class PathProcessorDecode implements InboundPathProcessorInterface {
 
   /**
-   * Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
+   * Implements \Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
    */
   public function processInbound($path, Request $request) {
     return urldecode($path);
diff --git a/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php b/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php
index d03d19b..da7821c 100644
--- a/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php
+++ b/core/lib/Drupal/Core/PathProcessor/PathProcessorFront.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\PathProcessor\PathProcessorFront.
+ * Contains \Drupal\Core\PathProcessor\PathProcessorFront.
  */
 
 namespace Drupal\Core\PathProcessor;
@@ -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) {
@@ -33,7 +33,7 @@ public function __construct(ConfigFactory $config) {
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
+   * Implements \Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
    */
   public function processInbound($path, Request $request) {
     if (empty($path)) {
@@ -46,7 +46,7 @@ public function processInbound($path, Request $request) {
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
+   * Implements \Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
    */
   public function processOutbound($path, &$options = array(), Request $request = NULL) {
     // The special path '<front>' links to the default front page.
diff --git a/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php b/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
index db8b799..26d784b 100644
--- a/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
+++ b/core/lib/Drupal/Core/PathProcessor/PathProcessorManager.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\PathProcessor\PathProcessorManager.
+ * Contains \Drupal\Core\PathProcessor\PathProcessorManager.
  */
 
 namespace Drupal\Core\PathProcessor;
@@ -67,7 +67,7 @@ public function addInbound(InboundPathProcessorInterface $processor, $priority =
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
+   * Implements \Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
    */
   public function processInbound($path, Request $request) {
     $processors = $this->getInbound();
@@ -107,7 +107,7 @@ public function addOutbound(OutboundPathProcessorInterface $processor, $priority
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
+   * Implements \Drupal\Core\PathProcessor\OutboundPathProcessorInterface::processOutbound().
    */
   public function processOutbound($path, &$options = array(), Request $request = NULL) {
     $processors = $this->getOutbound();
diff --git a/core/lib/Drupal/Core/Plugin/Discovery/AlterDecorator.php b/core/lib/Drupal/Core/Plugin/Discovery/AlterDecorator.php
index 8bcee3f..b9a1c20 100644
--- a/core/lib/Drupal/Core/Plugin/Discovery/AlterDecorator.php
+++ b/core/lib/Drupal/Core/Plugin/Discovery/AlterDecorator.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Plugin\Discovery\AlterDiscoveryDecorator.
+ * Definition of \Drupal\Core\Plugin\Discovery\AlterDiscoveryDecorator.
 */
 
 namespace Drupal\Core\Plugin\Discovery;
@@ -23,16 +23,16 @@ class AlterDecorator implements DiscoveryInterface {
   /**
    * The Discovery object being decorated.
    *
-   * @var Drupal\Component\Plugin\Discovery\DiscoveryInterface
+   * @var \Drupal\Component\Plugin\Discovery\DiscoveryInterface
    */
   protected $decorated;
 
   /**
-   * Constructs a Drupal\Core\Plugin\Discovery\AlterDecorator object.
+   * Constructs a \Drupal\Core\Plugin\Discovery\AlterDecorator object.
    *
    * 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 $hook
    *   The name of the alter hook that will be used by this discovery instance.
@@ -43,7 +43,7 @@ public function __construct(DiscoveryInterface $decorated, $hook) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
    */
   public function getDefinition($plugin_id) {
     $definitions = $this->getDefinitions();
@@ -52,7 +52,7 @@ public function getDefinition($plugin_id) {
 
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     $definitions = $this->decorated->getDefinitions();
diff --git a/core/lib/Drupal/Core/Plugin/Discovery/AnnotatedClassDiscovery.php b/core/lib/Drupal/Core/Plugin/Discovery/AnnotatedClassDiscovery.php
index 6695db7..558a8c6 100644
--- a/core/lib/Drupal/Core/Plugin/Discovery/AnnotatedClassDiscovery.php
+++ b/core/lib/Drupal/Core/Plugin/Discovery/AnnotatedClassDiscovery.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery.
+ * Definition of \Drupal\Core\Plugin\Discovery\AnnotatedClassDiscovery.
  */
 
 namespace Drupal\Core\Plugin\Discovery;
@@ -86,7 +86,7 @@ public function getDefinitions() {
    *   The matching provider name, or NULL otherwise.
    */
   protected function getProviderFromNamespace($namespace) {
-    preg_match('|^Drupal\\\\(?<provider>[\w]+)\\\\|', $namespace, $matches);
+    preg_match('|^\Drupal\\\\(?<provider>[\w]+)\\\\|', $namespace, $matches);
 
     if (isset($matches['provider'])) {
       return $matches['provider'];
diff --git a/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php b/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php
index a199171..d21e358 100644
--- a/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php
+++ b/core/lib/Drupal/Core/Plugin/Discovery/CacheDecorator.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Plugin\Discovery\CacheDecorator.
+ * Definition of \Drupal\Core\Plugin\Discovery\CacheDecorator.
  */
 
 namespace Drupal\Core\Plugin\Discovery;
@@ -54,16 +54,16 @@ class CacheDecorator implements CachedDiscoveryInterface {
   /**
    * The Discovery object being decorated.
    *
-   * @var Drupal\Component\Plugin\Discovery\DiscoveryInterface
+   * @var \Drupal\Component\Plugin\Discovery\DiscoveryInterface
    */
   protected $decorated;
 
   /**
-   * Constructs a Drupal\Core\Plugin\Discovery\CacheDecorator object.
+   * Constructs a \Drupal\Core\Plugin\Discovery\CacheDecorator object.
    *
    * 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.
@@ -84,7 +84,7 @@ public function __construct(DiscoveryInterface $decorated, $cache_key, $cache_bi
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinition().
    */
   public function getDefinition($plugin_id) {
     // Optimize for fast access to definitions if they are already in memory.
@@ -106,7 +106,7 @@ public function getDefinition($plugin_id) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     // Optimize for fast access to definitions if they are already in memory.
diff --git a/core/lib/Drupal/Core/Plugin/Discovery/HookDiscovery.php b/core/lib/Drupal/Core/Plugin/Discovery/HookDiscovery.php
index 0c77a2f..922c587 100644
--- a/core/lib/Drupal/Core/Plugin/Discovery/HookDiscovery.php
+++ b/core/lib/Drupal/Core/Plugin/Discovery/HookDiscovery.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Plugin\Discovery\HookDiscovery.
+ * Definition of \Drupal\Core\Plugin\Discovery\HookDiscovery.
  */
 
 namespace Drupal\Core\Plugin\Discovery;
@@ -22,7 +22,7 @@ class HookDiscovery implements DiscoveryInterface {
   protected $hook;
 
   /**
-   * Constructs a Drupal\Core\Plugin\Discovery\HookDiscovery object.
+   * Constructs a \Drupal\Core\Plugin\Discovery\HookDiscovery object.
    *
    * @param string $hook
    *   The Drupal hook that a module can implement in order to interface to
@@ -33,7 +33,7 @@ function __construct($hook) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinition().
    */
   public function getDefinition($plugin_id) {
     $plugins = $this->getDefinitions();
@@ -41,7 +41,7 @@ public function getDefinition($plugin_id) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DicoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     $definitions = array();
diff --git a/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php b/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php
index 7ba8913..8caa61d 100644
--- a/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php
+++ b/core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Plugin\Discovery\InfoHookDecorator.
+ * Contains \Drupal\Core\Plugin\Discovery\InfoHookDecorator.
  */
 
 namespace Drupal\Core\Plugin\Discovery;
@@ -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.
@@ -42,7 +42,7 @@ public function __construct(DiscoveryInterface $decorated, $hook) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinition().
    */
   public function getDefinition($plugin_id) {
     $definitions = $this->getDefinitions();
@@ -50,7 +50,7 @@ public function getDefinition($plugin_id) {
   }
 
   /**
-   * Implements Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
+   * Implements \Drupal\Component\Plugin\Discovery\DiscoveryInterface::getDefinitions().
    */
   public function getDefinitions() {
     $definitions = $this->decorated->getDefinitions();
diff --git a/core/lib/Drupal/Core/Queue/Batch.php b/core/lib/Drupal/Core/Queue/Batch.php
index 56ec94f..01fe2f3 100644
--- a/core/lib/Drupal/Core/Queue/Batch.php
+++ b/core/lib/Drupal/Core/Queue/Batch.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Queue\Batch.
+ * Definition of \Drupal\Core\Queue\Batch.
  */
 
 namespace Drupal\Core\Queue;
@@ -21,9 +21,9 @@
 class Batch extends DatabaseQueue {
 
   /**
-   * Overrides Drupal\Core\Queue\System::claimItem().
+   * Overrides \Drupal\Core\Queue\System::claimItem().
    *
-   * Unlike Drupal\Core\Queue\System::claimItem(), this method provides a
+   * Unlike \Drupal\Core\Queue\System::claimItem(), this method provides a
    * default lease time of 0 (no expiration) instead of 30. This allows the item
    * to be claimed repeatedly until it is deleted.
    */
@@ -40,7 +40,7 @@ public function claimItem($lease_time = 0) {
    * Retrieves all remaining items in the queue.
    *
    * This is specific to Batch API and is not part of the
-   * Drupal\Core\Queue\QueueInterface.
+   * \Drupal\Core\Queue\QueueInterface.
    *
    * @return array
    *   An array of queue items.
diff --git a/core/lib/Drupal/Core/Queue/BatchMemory.php b/core/lib/Drupal/Core/Queue/BatchMemory.php
index fcc49f5..d4a630c 100644
--- a/core/lib/Drupal/Core/Queue/BatchMemory.php
+++ b/core/lib/Drupal/Core/Queue/BatchMemory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Queue\BatchMemory.
+ * Definition of \Drupal\Core\Queue\BatchMemory.
  */
 
 namespace Drupal\Core\Queue;
@@ -19,9 +19,9 @@
 class BatchMemory extends Memory {
 
   /**
-   * Overrides Drupal\Core\Queue\Memory::claimItem().
+   * Overrides \Drupal\Core\Queue\Memory::claimItem().
    *
-   * Unlike Drupal\Core\Queue\Memory::claimItem(), this method provides a
+   * Unlike \Drupal\Core\Queue\Memory::claimItem(), this method provides a
    * default lease time of 0 (no expiration) instead of 30. This allows the item
    * to be claimed repeatedly until it is deleted.
    */
@@ -37,7 +37,7 @@ public function claimItem($lease_time = 0) {
    * Retrieves all remaining items in the queue.
    *
    * This is specific to Batch API and is not part of the
-   * Drupal\Core\Queue\QueueInterface.
+   * \Drupal\Core\Queue\QueueInterface.
    *
    * @return array
    *   An array of queue items.
diff --git a/core/lib/Drupal/Core/Queue/DatabaseQueue.php b/core/lib/Drupal/Core/Queue/DatabaseQueue.php
index 327b6fd..d89e487 100644
--- a/core/lib/Drupal/Core/Queue/DatabaseQueue.php
+++ b/core/lib/Drupal/Core/Queue/DatabaseQueue.php
@@ -42,7 +42,7 @@ function __construct($name, Connection $connection) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::createItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::createItem().
    */
   public function createItem($data) {
     $query = $this->connection->insert('queue')
@@ -58,14 +58,14 @@ public function createItem($data) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::numberOfItems().
+   * Implements \Drupal\Core\Queue\QueueInterface::numberOfItems().
    */
   public function numberOfItems() {
     return $this->connection->query('SELECT COUNT(item_id) FROM {queue} WHERE name = :name', array(':name' => $this->name))->fetchField();
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::claimItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::claimItem().
    */
   public function claimItem($lease_time = 30) {
     // Claim an item by updating its expire fields. If claim is not successful
@@ -101,7 +101,7 @@ public function claimItem($lease_time = 30) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::releaseItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::releaseItem().
    */
   public function releaseItem($item) {
     $update = $this->connection->update('queue')
@@ -113,7 +113,7 @@ public function releaseItem($item) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::deleteItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::deleteItem().
    */
   public function deleteItem($item) {
     $this->connection->delete('queue')
@@ -122,7 +122,7 @@ public function deleteItem($item) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::createQueue().
+   * Implements \Drupal\Core\Queue\QueueInterface::createQueue().
    */
   public function createQueue() {
     // All tasks are stored in a single database table (which is created when
@@ -131,7 +131,7 @@ public function createQueue() {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::deleteQueue().
+   * Implements \Drupal\Core\Queue\QueueInterface::deleteQueue().
    */
   public function deleteQueue() {
     $this->connection->delete('queue')
diff --git a/core/lib/Drupal/Core/Queue/Memory.php b/core/lib/Drupal/Core/Queue/Memory.php
index 1c59d8c..233beaa 100644
--- a/core/lib/Drupal/Core/Queue/Memory.php
+++ b/core/lib/Drupal/Core/Queue/Memory.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Queue\Memory.
+ * Definition of \Drupal\Core\Queue\Memory.
  */
 
 namespace Drupal\Core\Queue;
@@ -43,7 +43,7 @@ public function __construct($name) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::createItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::createItem().
    */
   public function createItem($data) {
     $item = new stdClass();
@@ -56,14 +56,14 @@ public function createItem($data) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::numberOfItems().
+   * Implements \Drupal\Core\Queue\QueueInterface::numberOfItems().
    */
   public function numberOfItems() {
     return count($this->queue);
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::claimItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::claimItem().
    */
   public function claimItem($lease_time = 30) {
     foreach ($this->queue as $key => $item) {
@@ -77,14 +77,14 @@ public function claimItem($lease_time = 30) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::deleteItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::deleteItem().
    */
   public function deleteItem($item) {
     unset($this->queue[$item->item_id]);
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::releaseItem().
+   * Implements \Drupal\Core\Queue\QueueInterface::releaseItem().
    */
   public function releaseItem($item) {
     if (isset($this->queue[$item->item_id]) && $this->queue[$item->item_id]->expire != 0) {
@@ -95,14 +95,14 @@ public function releaseItem($item) {
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::createQueue().
+   * Implements \Drupal\Core\Queue\QueueInterface::createQueue().
    */
   public function createQueue() {
     // Nothing needed here.
   }
 
   /**
-   * Implements Drupal\Core\Queue\QueueInterface::deleteQueue().
+   * Implements \Drupal\Core\Queue\QueueInterface::deleteQueue().
    */
   public function deleteQueue() {
     $this->queue = array();
diff --git a/core/lib/Drupal/Core/Queue/QueueInterface.php b/core/lib/Drupal/Core/Queue/QueueInterface.php
index 0b7b4cf..99d22dc 100644
--- a/core/lib/Drupal/Core/Queue/QueueInterface.php
+++ b/core/lib/Drupal/Core/Queue/QueueInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Queue\QueueInterface.
+ * Definition of \Drupal\Core\Queue\QueueInterface.
  */
 
 namespace Drupal\Core\Queue;
@@ -75,7 +75,7 @@ public function claimItem($lease_time = 3600);
    * Deletes a finished item from the queue.
    *
    * @param $item
-   *   The item returned by Drupal\Core\Queue\QueueInterface::claimItem().
+   *   The item returned by \Drupal\Core\Queue\QueueInterface::claimItem().
    */
   public function deleteItem($item);
 
@@ -85,7 +85,7 @@ public function deleteItem($item);
    * Another worker can come in and process it before the timeout expires.
    *
    * @param $item
-   *   The item returned by Drupal\Core\Queue\QueueInterface::claimItem().
+   *   The item returned by \Drupal\Core\Queue\QueueInterface::claimItem().
    *
    * @return boolean
    *   TRUE if the item has been released, FALSE otherwise.
diff --git a/core/lib/Drupal/Core/Queue/ReliableQueueInterface.php b/core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
index 7f7f8b2..a440de8 100644
--- a/core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
+++ b/core/lib/Drupal/Core/Queue/ReliableQueueInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Queue\ReliableQueueInterface.
+ * Definition of \Drupal\Core\Queue\ReliableQueueInterface.
  */
 
 namespace Drupal\Core\Queue;
diff --git a/core/lib/Drupal/Core/Routing/CompiledRoute.php b/core/lib/Drupal/Core/Routing/CompiledRoute.php
index cd8c74b..d57861a 100644
--- a/core/lib/Drupal/Core/Routing/CompiledRoute.php
+++ b/core/lib/Drupal/Core/Routing/CompiledRoute.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Routing\CompiledRoute.
+ * Definition of \Drupal\Core\Routing\CompiledRoute.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/Routing/GeneratorNotInitializedException.php b/core/lib/Drupal/Core/Routing/GeneratorNotInitializedException.php
index ab2922c..a7037a5 100644
--- a/core/lib/Drupal/Core/Routing/GeneratorNotInitializedException.php
+++ b/core/lib/Drupal/Core/Routing/GeneratorNotInitializedException.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\Core\Routing\GeneratorNotInitializedException.
+ * Definition of \Drupal\Core\Routing\GeneratorNotInitializedException.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/Routing/MatcherDumper.php b/core/lib/Drupal/Core/Routing/MatcherDumper.php
index 33f8801..ce39422 100644
--- a/core/lib/Drupal/Core/Routing/MatcherDumper.php
+++ b/core/lib/Drupal/Core/Routing/MatcherDumper.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Routing\MatcherDumper.
+ * Definition of \Drupal\Core\Routing\MatcherDumper.
  */
 
 namespace Drupal\Core\Routing;
@@ -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/MimeTypeMatcher.php b/core/lib/Drupal/Core/Routing/MimeTypeMatcher.php
index f77e254..efa2afc 100644
--- a/core/lib/Drupal/Core/Routing/MimeTypeMatcher.php
+++ b/core/lib/Drupal/Core/Routing/MimeTypeMatcher.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Routing\MimeTypeMatcher.
+ * Contains \Drupal\Core\Routing\MimeTypeMatcher.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/Routing/NullGenerator.php b/core/lib/Drupal/Core/Routing/NullGenerator.php
index 8970247..a845e1a 100644
--- a/core/lib/Drupal/Core/Routing/NullGenerator.php
+++ b/core/lib/Drupal/Core/Routing/NullGenerator.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Routing\NullGenerator.
+ * Contains \Drupal\Core\Routing\NullGenerator.
  */
 
 namespace Drupal\Core\Routing;
@@ -23,14 +23,14 @@ public function __construct() {
   }
 
   /**
-   * Overrides Drupal\Core\Routing\UrlGenerator::generate();
+   * Overrides \Drupal\Core\Routing\UrlGenerator::generate();
    */
   public function generate($name, $parameters = array(), $absolute = FALSE) {
     throw new RouteNotFoundException();
   }
 
   /**
-   * Overrides Drupal\Core\Routing\UrlGenerator::setContext();
+   * Overrides \Drupal\Core\Routing\UrlGenerator::setContext();
    */
   public function setContext(RequestContext $context) {
   }
@@ -42,7 +42,7 @@ public function getContext() {
   }
 
   /**
-   * Overrides Drupal\Core\Routing\UrlGenerator::processPath().
+   * Overrides \Drupal\Core\Routing\UrlGenerator::processPath().
    */
   protected function processPath($path, &$options = array()) {
     return $path;
diff --git a/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php b/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php
index 5c91e62..6802c1b 100644
--- a/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php
+++ b/core/lib/Drupal/Core/Routing/PathBasedGeneratorInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Routing\PathBasedGeneratorInterface.
+ * Contains \Drupal\Core\Routing\PathBasedGeneratorInterface.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/Routing/RouteBuildEvent.php b/core/lib/Drupal/Core/Routing/RouteBuildEvent.php
index 017b83a..fce5804 100644
--- a/core/lib/Drupal/Core/Routing/RouteBuildEvent.php
+++ b/core/lib/Drupal/Core/Routing/RouteBuildEvent.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Routing\RouteBuildEvent.
+ * Definition of \Drupal\Core\Routing\RouteBuildEvent.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/Routing/RouteBuilder.php b/core/lib/Drupal/Core/Routing/RouteBuilder.php
index 232e47e..071fcc0 100644
--- a/core/lib/Drupal/Core/Routing/RouteBuilder.php
+++ b/core/lib/Drupal/Core/Routing/RouteBuilder.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Routing\RouteBuilder.
+ * Definition of \Drupal\Core\Routing\RouteBuilder.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/Routing/RouteCompiler.php b/core/lib/Drupal/Core/Routing/RouteCompiler.php
index bd6c7b4..6c5000a 100644
--- a/core/lib/Drupal/Core/Routing/RouteCompiler.php
+++ b/core/lib/Drupal/Core/Routing/RouteCompiler.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Routing\RouteCompiler.
+ * Definition of \Drupal\Core\Routing\RouteCompiler.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/Routing/RouteProvider.php b/core/lib/Drupal/Core/Routing/RouteProvider.php
index bd6c475..6d87328 100644
--- a/core/lib/Drupal/Core/Routing/RouteProvider.php
+++ b/core/lib/Drupal/Core/Routing/RouteProvider.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Routing\RouteProvider.
+ * Contains \Drupal\Core\Routing\RouteProvider.
  */
 
 namespace Drupal\Core\Routing;
@@ -22,7 +22,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/Routing/UrlGenerator.php b/core/lib/Drupal/Core/Routing/UrlGenerator.php
index 04c2c17..fc9cd25 100644
--- a/core/lib/Drupal/Core/Routing/UrlGenerator.php
+++ b/core/lib/Drupal/Core/Routing/UrlGenerator.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Routing\UrlGenerator.
+ * Contains \Drupal\Core\Routing\UrlGenerator.
  */
 
 namespace Drupal\Core\Routing;
@@ -209,9 +209,9 @@ public function generate($name, $parameters = array(), $absolute = FALSE) {
    *     Defaults to empty string when clean URLs are in effect, and to
    *     'index.php/' when they are not.
    *   - 'entity_type': The entity type of the object that called url(). Only
-   *     set if url() is invoked by Drupal\Core\Entity\Entity::uri().
+   *     set if url() is invoked by \Drupal\Core\Entity\Entity::uri().
    *   - 'entity': The entity object (such as a node) for which the URL is being
-   *     generated. Only set if url() is invoked by Drupal\Core\Entity\Entity::uri().
+   *     generated. Only set if url() is invoked by \Drupal\Core\Entity\Entity::uri().
    *
    * @return
    *   A string containing a URL to the given path.
diff --git a/core/lib/Drupal/Core/Routing/UrlMatcher.php b/core/lib/Drupal/Core/Routing/UrlMatcher.php
index ae5fc7d..e97f942 100644
--- a/core/lib/Drupal/Core/Routing/UrlMatcher.php
+++ b/core/lib/Drupal/Core/Routing/UrlMatcher.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\Core\Routing\UrlMatcher.
+ * Contains \Drupal\Core\Routing\UrlMatcher.
  */
 
 namespace Drupal\Core\Routing;
diff --git a/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php b/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php
index 1b14280..2cb14d4 100644
--- a/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/LocalReadOnlyStream.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\LocalReadOnlyStream.
+ * Definition of \Drupal\Core\StreamWrapper\LocalReadOnlyStream.
  */
 
 namespace Drupal\Core\StreamWrapper;
@@ -15,7 +15,7 @@
  * such as "sites/default/files/example.txt" and then PHP filesystem functions
  * are invoked.
  *
- * Drupal\Core\StreamWrapper\LocalReadOnlyStream implementations need to
+ * \Drupal\Core\StreamWrapper\LocalReadOnlyStream implementations need to
  * implement at least the getDirectoryPath() and getExternalUrl() methods.
  */
 abstract class LocalReadOnlyStream extends LocalStream {
diff --git a/core/lib/Drupal/Core/StreamWrapper/LocalStream.php b/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
index 54e7e7a..d8370f0 100644
--- a/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/LocalStream.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\LocalStream.
+ * Definition of \Drupal\Core\StreamWrapper\LocalStream.
  */
 
 namespace Drupal\Core\StreamWrapper;
@@ -15,7 +15,7 @@
  * "sites/default/files/example.txt" and then PHP filesystem functions are
  * invoked.
  *
- * Drupal\Core\StreamWrapper\LocalStream implementations need to implement at least the
+ * \Drupal\Core\StreamWrapper\LocalStream implementations need to implement at least the
  * getDirectoryPath() and getExternalUrl() methods.
  */
 abstract class LocalStream implements StreamWrapperInterface {
@@ -53,14 +53,14 @@
   abstract function getDirectoryPath();
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::setUri().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::setUri().
    */
   function setUri($uri) {
     $this->uri = $uri;
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::getUri().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::getUri().
    */
   function getUri() {
     return $this->uri;
@@ -94,7 +94,7 @@ protected function getTarget($uri = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::getMimeType().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::getMimeType().
    */
   static function getMimeType($uri, $mapping = NULL) {
     if (!isset($mapping)) {
@@ -126,7 +126,7 @@ static function getMimeType($uri, $mapping = NULL) {
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::chmod().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::chmod().
    */
   function chmod($mode) {
     $output = @chmod($this->getLocalPath(), $mode);
@@ -137,7 +137,7 @@ function chmod($mode) {
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::realpath().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::realpath().
    */
   function realpath() {
     return $this->getLocalPath();
@@ -153,7 +153,7 @@ function realpath() {
    * @return string|bool
    *   If $uri is not set, returns the canonical absolute path of the URI
    *   previously set by the
-   *   Drupal\Core\StreamWrapper\StreamWrapperInterface::setUri() function.
+   *   \Drupal\Core\StreamWrapper\StreamWrapperInterface::setUri() function.
    *   If $uri is set and valid for this class, returns its canonical absolute
    *   path, as determined by the realpath() function. If $uri is set but not
    *   valid, returns FALSE.
diff --git a/core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php b/core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php
index fad393f..60976d0 100644
--- a/core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php
+++ b/core/lib/Drupal/Core/StreamWrapper/PhpStreamWrapperInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\PhpStreamWrapperInterface.
+ * Definition of \Drupal\Core\StreamWrapper\PhpStreamWrapperInterface.
  */
 
 namespace Drupal\Core\StreamWrapper;
diff --git a/core/lib/Drupal/Core/StreamWrapper/PrivateStream.php b/core/lib/Drupal/Core/StreamWrapper/PrivateStream.php
index 833580f..b983142 100644
--- a/core/lib/Drupal/Core/StreamWrapper/PrivateStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/PrivateStream.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\PrivateStream.
+ * Definition of \Drupal\Core\StreamWrapper\PrivateStream.
  */
 
 namespace Drupal\Core\StreamWrapper;
@@ -16,14 +16,14 @@
 class PrivateStream extends LocalStream {
 
   /**
-   * Implements Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
+   * Implements \Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
    */
   public function getDirectoryPath() {
     return config('system.file')->get('path.private');
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
    *
    * @return string
    *   Returns the HTML URI of a private file.
diff --git a/core/lib/Drupal/Core/StreamWrapper/PublicStream.php b/core/lib/Drupal/Core/StreamWrapper/PublicStream.php
index 207b77a..39b29ee 100644
--- a/core/lib/Drupal/Core/StreamWrapper/PublicStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/PublicStream.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\PublicStream.
+ * Definition of \Drupal\Core\StreamWrapper\PublicStream.
  */
 
 namespace Drupal\Core\StreamWrapper;
@@ -16,14 +16,14 @@
 class PublicStream extends LocalStream {
 
   /**
-   * Implements Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
+   * Implements \Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
    */
   public function getDirectoryPath() {
     return variable_get('file_public_path', conf_path() . '/files');
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
    *
    * @return string
    *   Returns the HTML URI of a public file.
diff --git a/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php b/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php
index 2ebcc06..fe4d051 100644
--- a/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/ReadOnlyStream.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\ReadOnlyStream.
+ * Definition of \Drupal\Core\StreamWrapper\ReadOnlyStream.
  */
 
 namespace Drupal\Core\StreamWrapper;
@@ -14,7 +14,7 @@
  * Specifically, it only implements the writing classes and read classes where
  * we need to restrict 'write-capable' arguments.
  *
- * Drupal\Core\StreamWrapper\ReadOnlyStream implementations need to implement
+ * \Drupal\Core\StreamWrapper\ReadOnlyStream implementations need to implement
  * all the read-related classes.
  */
 abstract class ReadOnlyStream implements StreamWrapperInterface {
@@ -42,14 +42,14 @@
   protected $uri;
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::setUri().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::setUri().
    */
   function setUri($uri) {
     $this->uri = $uri;
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::getUri().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::getUri().
    */
   function getUri() {
     return $this->uri;
diff --git a/core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php b/core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php
index 15ba2cf..a33071d 100644
--- a/core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php
+++ b/core/lib/Drupal/Core/StreamWrapper/StreamWrapperInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\StreamWrapperInterface.
+ * Definition of \Drupal\Core\StreamWrapper\StreamWrapperInterface.
  *
  * Provides a Drupal interface and classes to implement PHP stream wrappers for
  * public, private, and temporary files.
diff --git a/core/lib/Drupal/Core/StreamWrapper/TemporaryStream.php b/core/lib/Drupal/Core/StreamWrapper/TemporaryStream.php
index 42dd4fd..7dead34 100644
--- a/core/lib/Drupal/Core/StreamWrapper/TemporaryStream.php
+++ b/core/lib/Drupal/Core/StreamWrapper/TemporaryStream.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\StreamWrapper\TemporaryStream.
+ * Definition of \Drupal\Core\StreamWrapper\TemporaryStream.
  */
 
 namespace Drupal\Core\StreamWrapper;
@@ -16,14 +16,14 @@
 class TemporaryStream extends LocalStream {
 
   /**
-   * Implements Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
+   * Implements \Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
    */
   public function getDirectoryPath() {
     return file_directory_temp();
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
    */
   public function getExternalUrl() {
     $path = str_replace('\\', '/', $this->getTarget());
diff --git a/core/lib/Drupal/Core/SystemListing.php b/core/lib/Drupal/Core/SystemListing.php
index d627505..92d50ad 100644
--- a/core/lib/Drupal/Core/SystemListing.php
+++ b/core/lib/Drupal/Core/SystemListing.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\SystemListing.
+ * Definition of \Drupal\Core\SystemListing.
  */
 
 namespace Drupal\Core;
diff --git a/core/lib/Drupal/Core/SystemListingInfo.php b/core/lib/Drupal/Core/SystemListingInfo.php
index 989b0f2..00be791 100644
--- a/core/lib/Drupal/Core/SystemListingInfo.php
+++ b/core/lib/Drupal/Core/SystemListingInfo.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\SystemListingInfo.
+ * Definition of \Drupal\Core\SystemListingInfo.
  */
 
 namespace Drupal\Core;
@@ -15,7 +15,7 @@
 class SystemListingInfo extends SystemListing {
 
   /**
-   * Overrides Drupal\Core\SystemListing::profiles().
+   * Overrides \Drupal\Core\SystemListing::profiles().
    */
   protected function profiles($directory) {
     $searchdir = array();
@@ -41,7 +41,7 @@ protected function profiles($directory) {
   }
 
   /**
-   * Overrides Drupal\Core\SystemListing::process().
+   * Overrides \Drupal\Core\SystemListing::process().
    */
   protected function process(array $files, array $files_to_add) {
     // Duplicate files found in later search directories take precedence over
@@ -70,7 +70,7 @@ protected function process(array $files, array $files_to_add) {
   }
 
   /**
-   * Overrides Drupal\Core\SystemListing::processFile().
+   * Overrides \Drupal\Core\SystemListing::processFile().
    */
   protected function processFile($file) {
     $file->name = basename($file->name, '.info');
diff --git a/core/lib/Drupal/Core/Template/Attribute.php b/core/lib/Drupal/Core/Template/Attribute.php
index 076cfd3..4d3604b 100644
--- a/core/lib/Drupal/Core/Template/Attribute.php
+++ b/core/lib/Drupal/Core/Template/Attribute.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\Attribute.
+ * Definition of \Drupal\Core\Template\Attribute.
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/Template/AttributeArray.php b/core/lib/Drupal/Core/Template/AttributeArray.php
index a32201e..2d1d89a 100644
--- a/core/lib/Drupal/Core/Template/AttributeArray.php
+++ b/core/lib/Drupal/Core/Template/AttributeArray.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\AttributeArray.
+ * Definition of \Drupal\Core\Template\AttributeArray.
  */
 
 namespace Drupal\Core\Template;
@@ -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 48ca388..c37db0e 100644
--- a/core/lib/Drupal/Core/Template/AttributeBoolean.php
+++ b/core/lib/Drupal/Core/Template/AttributeBoolean.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\AttributeBoolean.
+ * Definition of \Drupal\Core\Template\AttributeBoolean.
  */
 
 namespace Drupal\Core\Template;
@@ -25,7 +25,7 @@
  *  // produces <select>;
  * @endcode
  *
- * @see Drupal\Core\Template\Attribute
+ * @see \Drupal\Core\Template\Attribute
  */
 class AttributeBoolean extends AttributeValueBase {
 
diff --git a/core/lib/Drupal/Core/Template/AttributeString.php b/core/lib/Drupal/Core/Template/AttributeString.php
index 2c3ca24..c5c9d8e 100644
--- a/core/lib/Drupal/Core/Template/AttributeString.php
+++ b/core/lib/Drupal/Core/Template/AttributeString.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\AttributeString.
+ * Definition of \Drupal\Core\Template\AttributeString.
  */
 
 namespace Drupal\Core\Template;
@@ -22,7 +22,7 @@
  *  // Produces: <cat id="socks" style="background-color:white">.
  * @endcode
  *
- * @see Drupal\Core\Template\Attribute
+ * @see \Drupal\Core\Template\Attribute
  */
 class AttributeString extends AttributeValueBase {
 
diff --git a/core/lib/Drupal/Core/Template/AttributeValueBase.php b/core/lib/Drupal/Core/Template/AttributeValueBase.php
index df187df..c6ab547 100644
--- a/core/lib/Drupal/Core/Template/AttributeValueBase.php
+++ b/core/lib/Drupal/Core/Template/AttributeValueBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\AttributeValueBase.
+ * Definition of \Drupal\Core\Template\AttributeValueBase.
  */
 
 namespace Drupal\Core\Template;
@@ -10,7 +10,7 @@
 /**
  * Defines the base class for an attribute type.
  *
- * @see Drupal\Core\Template\Attribute
+ * @see \Drupal\Core\Template\Attribute
  */
 abstract class AttributeValueBase {
 
diff --git a/core/lib/Drupal/Core/Template/TwigEnvironment.php b/core/lib/Drupal/Core/Template/TwigEnvironment.php
index 86f5dc6..0db0578 100644
--- a/core/lib/Drupal/Core/Template/TwigEnvironment.php
+++ b/core/lib/Drupal/Core/Template/TwigEnvironment.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigEnvironment.
+ * Definition of \Drupal\Core\Template\TwigEnvironment.
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/Template/TwigExtension.php b/core/lib/Drupal/Core/Template/TwigExtension.php
index 3c86bd1..f067684 100644
--- a/core/lib/Drupal/Core/Template/TwigExtension.php
+++ b/core/lib/Drupal/Core/Template/TwigExtension.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigExtension.
+ * Definition of \Drupal\Core\Template\TwigExtension.
  *
  * This provides a Twig extension that registers various Drupal specific extensions to Twig.
  *
diff --git a/core/lib/Drupal/Core/Template/TwigFunctionTokenParser.php b/core/lib/Drupal/Core/Template/TwigFunctionTokenParser.php
index 2d123cc..2e00016 100644
--- a/core/lib/Drupal/Core/Template/TwigFunctionTokenParser.php
+++ b/core/lib/Drupal/Core/Template/TwigFunctionTokenParser.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigFunctionTokenParser.
+ * Definition of \Drupal\Core\Template\TwigFunctionTokenParser.
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/Template/TwigNodeExpressionNameReference.php b/core/lib/Drupal/Core/Template/TwigNodeExpressionNameReference.php
index c66d73f..2be46b6 100644
--- a/core/lib/Drupal/Core/Template/TwigNodeExpressionNameReference.php
+++ b/core/lib/Drupal/Core/Template/TwigNodeExpressionNameReference.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigNodeExpressionNameReference
+ * Definition of \Drupal\Core\Template\TwigNodeExpressionNameReference
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/Template/TwigNodeVisitor.php b/core/lib/Drupal/Core/Template/TwigNodeVisitor.php
index 710faa0..0fdf479 100644
--- a/core/lib/Drupal/Core/Template/TwigNodeVisitor.php
+++ b/core/lib/Drupal/Core/Template/TwigNodeVisitor.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigNodeVisitor.
+ * Definition of \Drupal\Core\Template\TwigNodeVisitor.
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/Template/TwigReference.php b/core/lib/Drupal/Core/Template/TwigReference.php
index 0b8b506..ba5c177 100644
--- a/core/lib/Drupal/Core/Template/TwigReference.php
+++ b/core/lib/Drupal/Core/Template/TwigReference.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigReference.
+ * Definition of \Drupal\Core\Template\TwigReference.
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/Template/TwigReferenceFunction.php b/core/lib/Drupal/Core/Template/TwigReferenceFunction.php
index 6ca4cbd..004c5f4 100644
--- a/core/lib/Drupal/Core/Template/TwigReferenceFunction.php
+++ b/core/lib/Drupal/Core/Template/TwigReferenceFunction.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigReferenceFunction.
+ * Definition of \Drupal\Core\Template\TwigReferenceFunction.
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/Template/TwigReferenceFunctions.php b/core/lib/Drupal/Core/Template/TwigReferenceFunctions.php
index 4f584d1..008645f 100644
--- a/core/lib/Drupal/Core/Template/TwigReferenceFunctions.php
+++ b/core/lib/Drupal/Core/Template/TwigReferenceFunctions.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigReferenceFunctions.
+ * Definition of \Drupal\Core\Template\TwigReferenceFunctions.
  */
 
 namespace Drupal\Core\Template;
@@ -30,7 +30,7 @@
  * // Internally getContextReference returns the array wrapped in a
  * // TwigReference if certain criteria are met
  * function getContextReference(&$content) {
- *   $obj = new Drupal\Core\Template\TwigReference();
+ *   $obj = new \Drupal\Core\Template\TwigReference();
  *   $obj->setReference($content);
  *   return $obj;
  * }
@@ -39,7 +39,7 @@
  * // Simplified, generated twig code
  * $_content_ = getContextReference($content);
  *
- * Drupal\Core\Template\TwigReferenceFunctions::hide(
+ * \Drupal\Core\Template\TwigReferenceFunctions::hide(
  *   getAttribute($_content_, 'links')
  * );
  * @endcode
diff --git a/core/lib/Drupal/Core/Template/TwigTemplate.php b/core/lib/Drupal/Core/Template/TwigTemplate.php
index cb2d91d..6bfdd73 100644
--- a/core/lib/Drupal/Core/Template/TwigTemplate.php
+++ b/core/lib/Drupal/Core/Template/TwigTemplate.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Template\TwigTemplate.
+ * Definition of \Drupal\Core\Template\TwigTemplate.
  */
 
 namespace Drupal\Core\Template;
diff --git a/core/lib/Drupal/Core/TypedData/AccessibleInterface.php b/core/lib/Drupal/Core/TypedData/AccessibleInterface.php
index 2676006..30e373d 100644
--- a/core/lib/Drupal/Core/TypedData/AccessibleInterface.php
+++ b/core/lib/Drupal/Core/TypedData/AccessibleInterface.php
@@ -24,7 +24,7 @@
    *   - update
    *   - delete
    *   Defaults to 'view'.
-   * @param Drupal\Core\Session\AccountInterface $account
+   * @param \Drupal\Core\Session\AccountInterface $account
    *   (optional) The user for which to check access, or NULL to check access
    *   for the current user. Defaults to NULL.
    *
diff --git a/core/lib/Drupal/Core/TypedData/TypedData.php b/core/lib/Drupal/Core/TypedData/TypedData.php
index 8bfa215..e2de10d 100644
--- a/core/lib/Drupal/Core/TypedData/TypedData.php
+++ b/core/lib/Drupal/Core/TypedData/TypedData.php
@@ -50,7 +50,7 @@
    *   (optional) The parent object of the data property, or NULL if it is the
    *   root of a typed data tree. Defaults to NULL.
    *
-   * @see Drupal\Core\TypedData\TypedDataManager::create()
+   * @see \Drupal\Core\TypedData\TypedDataManager::create()
    */
   public function __construct(array $definition, $name = NULL, TypedDataInterface $parent = NULL) {
     $this->definition = $definition;
diff --git a/core/lib/Drupal/Core/Updater/Module.php b/core/lib/Drupal/Core/Updater/Module.php
index acc3028..f11199e 100644
--- a/core/lib/Drupal/Core/Updater/Module.php
+++ b/core/lib/Drupal/Core/Updater/Module.php
@@ -2,14 +2,14 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Updater\Module.
+ * Definition of \Drupal\Core\Updater\Module.
  */
 
 namespace Drupal\Core\Updater;
 
 /**
  * Defines a class for updating modules using
- * Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
+ * \Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
  */
 class Module extends Updater implements UpdaterInterface {
 
@@ -39,14 +39,14 @@ public function getInstallDirectory() {
   }
 
   /**
-   * Implements Drupal\Core\Updater\UpdaterInterface::isInstalled().
+   * Implements \Drupal\Core\Updater\UpdaterInterface::isInstalled().
    */
   public function isInstalled() {
     return (bool) drupal_get_path('module', $this->name);
   }
 
   /**
-   * Implements Drupal\Core\Updater\UpdaterInterface::canUpdateDirectory().
+   * Implements \Drupal\Core\Updater\UpdaterInterface::canUpdateDirectory().
    */
   public static function canUpdateDirectory($directory) {
     if (file_scan_directory($directory, '/.*\.module$/')) {
@@ -94,7 +94,7 @@ public function getSchemaUpdates() {
   }
 
   /**
-   * Overrides Drupal\Core\Updater\Updater::postInstallTasks().
+   * Overrides \Drupal\Core\Updater\Updater::postInstallTasks().
    */
   public function postInstallTasks() {
     return array(
@@ -105,7 +105,7 @@ public function postInstallTasks() {
   }
 
   /**
-   * Overrides Drupal\Core\Updater\Updater::postUpdateTasks().
+   * Overrides \Drupal\Core\Updater\Updater::postUpdateTasks().
    */
   public function postUpdateTasks() {
     // We don't want to check for DB updates here, we do that once for all
diff --git a/core/lib/Drupal/Core/Updater/Theme.php b/core/lib/Drupal/Core/Updater/Theme.php
index 4bd716a..9e3eb2c 100644
--- a/core/lib/Drupal/Core/Updater/Theme.php
+++ b/core/lib/Drupal/Core/Updater/Theme.php
@@ -2,14 +2,14 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Updater\Theme.
+ * Definition of \Drupal\Core\Updater\Theme.
  */
 
 namespace Drupal\Core\Updater;
 
 /**
  * Defines a class for updating themes using
- * Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
+ * \Drupal\Core\FileTransfer\FileTransfer classes via authorize.php.
  */
 class Theme extends Updater implements UpdaterInterface {
 
@@ -39,14 +39,14 @@ public function getInstallDirectory() {
   }
 
   /**
-   * Implements Drupal\Core\Updater\UpdaterInterface::isInstalled().
+   * Implements \Drupal\Core\Updater\UpdaterInterface::isInstalled().
    */
   public function isInstalled() {
     return (bool) drupal_get_path('theme', $this->name);
   }
 
   /**
-   * Implements Drupal\Core\Updater\UpdaterInterface::canUpdateDirectory().
+   * Implements \Drupal\Core\Updater\UpdaterInterface::canUpdateDirectory().
    */
   static function canUpdateDirectory($directory) {
     // This is a lousy test, but don't know how else to confirm it is a theme.
@@ -69,7 +69,7 @@ public static function canUpdate($project_name) {
   }
 
   /**
-   * Overrides Drupal\Core\Updater\Updater::postInstall().
+   * Overrides \Drupal\Core\Updater\Updater::postInstall().
    */
   public function postInstall() {
     // Update the theme info.
@@ -78,7 +78,7 @@ public function postInstall() {
   }
 
   /**
-   * Overrides Drupal\Core\Updater\Updater::postInstallTasks().
+   * Overrides \Drupal\Core\Updater\Updater::postInstallTasks().
    */
   public function postInstallTasks() {
     return array(
diff --git a/core/lib/Drupal/Core/Updater/Updater.php b/core/lib/Drupal/Core/Updater/Updater.php
index cdd4e4e..53f8355 100644
--- a/core/lib/Drupal/Core/Updater/Updater.php
+++ b/core/lib/Drupal/Core/Updater/Updater.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Updater\Updater.
+ * Definition of \Drupal\Core\Updater\Updater.
  */
 
 namespace Drupal\Core\Updater;
@@ -42,10 +42,10 @@ public function __construct($source) {
    * @param string $source
    *   Directory of a Drupal project.
    *
-   * @return Drupal\Core\Updater\Updater
-   *   A new Drupal\Core\Updater\Updater object.
+   * @return \Drupal\Core\Updater\Updater
+   *   A new \Drupal\Core\Updater\Updater object.
    *
-   * @throws Drupal\Core\Updater\UpdaterException
+   * @throws \Drupal\Core\Updater\UpdaterException
    */
   public static function factory($source) {
     if (is_dir($source)) {
@@ -66,7 +66,7 @@ public static function factory($source) {
    * @return string
    *   The class name which can work with this project type.
    *
-   * @throws Drupal\Core\Updater\UpdaterException
+   * @throws \Drupal\Core\Updater\UpdaterException
    */
   public static function getUpdaterFromDirectory($directory) {
     // Gets a list of possible implementing classes.
@@ -133,7 +133,7 @@ public static function getProjectName($directory) {
    * @return string
    *   The title of the project.
    *
-   * @throws Drupal\Core\Updater\UpdaterException
+   * @throws \Drupal\Core\Updater\UpdaterException
    */
   public static function getProjectTitle($directory) {
     $info_file = self::findInfoFile($directory);
@@ -168,7 +168,7 @@ protected function getInstallArgs($overrides = array()) {
   /**
    * Updates a Drupal project and returns a list of next actions.
    *
-   * @param Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
+   * @param \Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
    *   Object that is a child of FileTransfer. Used for moving files
    *   to the server.
    * @param array $overrides
@@ -177,8 +177,8 @@ protected function getInstallArgs($overrides = array()) {
    * @return array
    *   An array of links which the user may need to complete the update
    *
-   * @throws Drupal\Core\Updater\UpdaterException
-   * @throws Drupal\Core\Updater\UpdaterFileTransferException
+   * @throws \Drupal\Core\Updater\UpdaterException
+   * @throws \Drupal\Core\Updater\UpdaterFileTransferException
    */
   public function update(&$filetransfer, $overrides = array()) {
     try {
@@ -227,7 +227,7 @@ public function update(&$filetransfer, $overrides = array()) {
   /**
    * Installs a Drupal project, returns a list of next actions.
    *
-   * @param Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
+   * @param \Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
    *   Object that is a child of FileTransfer.
    * @param array $overrides
    *   An array of settings to override defaults; see self::getInstallArgs().
@@ -235,7 +235,7 @@ public function update(&$filetransfer, $overrides = array()) {
    * @return array
    *   An array of links which the user may need to complete the install.
    *
-   * @throws Drupal\Core\Updater\UpdaterFileTransferException
+   * @throws \Drupal\Core\Updater\UpdaterFileTransferException
    */
   public function install(&$filetransfer, $overrides = array()) {
     try {
@@ -265,12 +265,12 @@ public function install(&$filetransfer, $overrides = array()) {
   /**
    * Makes sure the installation parent directory exists and is writable.
    *
-   * @param Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
+   * @param \Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
    *   Object which is a child of FileTransfer.
    * @param string $directory
    *   The installation directory to prepare.
    *
-   * @throws Drupal\Core\Updater\UpdaterException
+   * @throws \Drupal\Core\Updater\UpdaterException
    */
   public function prepareInstallDirectory(&$filetransfer, $directory) {
     // Make the parent dir writable if need be and create the dir.
@@ -310,7 +310,7 @@ public function prepareInstallDirectory(&$filetransfer, $directory) {
   /**
    * Ensures that a given directory is world readable.
    *
-   * @param Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
+   * @param \Drupal\Core\FileTransfer\FileTransferInterface $filetransfer
    *   Object which is a child of FileTransfer.
    * @param string $path
    *   The file path to make world readable.
diff --git a/core/lib/Drupal/Core/Updater/UpdaterException.php b/core/lib/Drupal/Core/Updater/UpdaterException.php
index 577620e..5912a5d 100644
--- a/core/lib/Drupal/Core/Updater/UpdaterException.php
+++ b/core/lib/Drupal/Core/Updater/UpdaterException.php
@@ -2,13 +2,13 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Updater\UpdaterException.
+ * Definition of \Drupal\Core\Updater\UpdaterException.
  */
 
 namespace Drupal\Core\Updater;
 
 /**
- * Defines a Exception class for the Drupal\Core\Updater\Updater class
+ * Defines a Exception class for the \Drupal\Core\Updater\Updater class
  * hierarchy.
  *
  * This is identical to the base Exception class, we just give it a more
diff --git a/core/lib/Drupal/Core/Updater/UpdaterFileTransferException.php b/core/lib/Drupal/Core/Updater/UpdaterFileTransferException.php
index ab4c02b..d74152f 100644
--- a/core/lib/Drupal/Core/Updater/UpdaterFileTransferException.php
+++ b/core/lib/Drupal/Core/Updater/UpdaterFileTransferException.php
@@ -2,17 +2,17 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Updater\UpdaterFileTransferException.
+ * Definition of \Drupal\Core\Updater\UpdaterFileTransferException.
  */
 
 namespace Drupal\Core\Updater;
 
 /**
- * Defines a child class of Drupal\Core\Updater\UpdaterException that indicates
- * a Drupal\Core\FileTransfer\FileTransferInterface exception.
+ * Defines a child class of \Drupal\Core\Updater\UpdaterException that indicates
+ * a \Drupal\Core\FileTransfer\FileTransferInterface exception.
  *
- * We have to catch Drupal\Core\FileTransfer\FileTransferInterface exceptions
- * and wrap those in t(), since Drupal\Core\FileTransfer\FileTransferInterface
+ * We have to catch \Drupal\Core\FileTransfer\FileTransferInterface exceptions
+ * and wrap those in t(), since \Drupal\Core\FileTransfer\FileTransferInterface
  * is so low-level that it doesn't use any Drupal APIs and none of the strings
  * are translated.
  */
diff --git a/core/lib/Drupal/Core/Updater/UpdaterInterface.php b/core/lib/Drupal/Core/Updater/UpdaterInterface.php
index 50a1409..923eb33 100644
--- a/core/lib/Drupal/Core/Updater/UpdaterInterface.php
+++ b/core/lib/Drupal/Core/Updater/UpdaterInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Updater\UpdaterInterface.
+ * Definition of \Drupal\Core\Updater\UpdaterInterface.
  */
 
 namespace Drupal\Core\Updater;
diff --git a/core/lib/Drupal/Core/Utility/Color.php b/core/lib/Drupal/Core/Utility/Color.php
index 5f6bddc..8aad440 100644
--- a/core/lib/Drupal/Core/Utility/Color.php
+++ b/core/lib/Drupal/Core/Utility/Color.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Utility\Color.
+ * Definition of \Drupal\Core\Utility\Color.
  */
 
 namespace Drupal\Core\Utility;
diff --git a/core/lib/Drupal/Core/Utility/ModuleInfo.php b/core/lib/Drupal/Core/Utility/ModuleInfo.php
index eca0874..0314d96 100644
--- a/core/lib/Drupal/Core/Utility/ModuleInfo.php
+++ b/core/lib/Drupal/Core/Utility/ModuleInfo.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Utility\ModuleInfo.
+ * Definition of \Drupal\Core\Utility\ModuleInfo.
  */
 
 namespace Drupal\Core\Utility;
diff --git a/core/lib/Drupal/Core/Utility/ThemeRegistry.php b/core/lib/Drupal/Core/Utility/ThemeRegistry.php
index eb2dd80..5389062 100644
--- a/core/lib/Drupal/Core/Utility/ThemeRegistry.php
+++ b/core/lib/Drupal/Core/Utility/ThemeRegistry.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Utility\ThemeRegistry
+ * Definition of \Drupal\Core\Utility\ThemeRegistry
  */
 
 namespace Drupal\Core\Utility;
diff --git a/core/lib/Drupal/Core/Utility/Token.php b/core/lib/Drupal/Core/Utility/Token.php
index 29fef78..1d389c7 100644
--- a/core/lib/Drupal/Core/Utility/Token.php
+++ b/core/lib/Drupal/Core/Utility/Token.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Utility\Token.
+ * Definition of \Drupal\Core\Utility\Token.
  */
 
 namespace Drupal\Core\Utility;
diff --git a/core/lib/Drupal/Core/Utility/UpdateException.php b/core/lib/Drupal/Core/Utility/UpdateException.php
index 358aa01..f6c8361 100644
--- a/core/lib/Drupal/Core/Utility/UpdateException.php
+++ b/core/lib/Drupal/Core/Utility/UpdateException.php
@@ -2,7 +2,7 @@
 
 /*
  * @file
- * Definition of Drupal\Core\Utility\UpdateException.
+ * Definition of \Drupal\Core\Utility\UpdateException.
  */
 
 namespace Drupal\Core\Utility;
diff --git a/core/modules/action/lib/Drupal/action/ActionEditFormController.php b/core/modules/action/lib/Drupal/action/ActionEditFormController.php
index ba758f5..405d5b5 100644
--- a/core/modules/action/lib/Drupal/action/ActionEditFormController.php
+++ b/core/modules/action/lib/Drupal/action/ActionEditFormController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\action\ActionEditFormController.
+ * Contains \Drupal\action\ActionEditFormController.
  */
 
 namespace Drupal\action;
diff --git a/core/modules/action/lib/Drupal/action/ActionFormControllerBase.php b/core/modules/action/lib/Drupal/action/ActionFormControllerBase.php
index d1a916d..2dccbf9 100644
--- a/core/modules/action/lib/Drupal/action/ActionFormControllerBase.php
+++ b/core/modules/action/lib/Drupal/action/ActionFormControllerBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\action\ActionEditFormController.
+ * Contains \Drupal\action\ActionEditFormController.
  */
 
 namespace Drupal\action;
diff --git a/core/modules/action/lib/Drupal/action/Tests/ConfigurationTest.php b/core/modules/action/lib/Drupal/action/Tests/ConfigurationTest.php
index 3d62bbe..b049c33 100644
--- a/core/modules/action/lib/Drupal/action/Tests/ConfigurationTest.php
+++ b/core/modules/action/lib/Drupal/action/Tests/ConfigurationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\action\Tests\ConfigurationTest.
+ * Definition of \Drupal\action\Tests\ConfigurationTest.
  */
 
 namespace Drupal\action\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php b/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php
index 1e77d7c..7552452 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php
@@ -16,7 +16,7 @@
 class FeedFormController extends EntityFormControllerNG {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::form().
+   * Overrides \Drupal\Core\Entity\EntityFormController::form().
    */
   public function form(array $form, array &$form_state) {
     $feed = $this->entity;
@@ -85,7 +85,7 @@ public function form(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::validate().
+   * Overrides \Drupal\Core\Entity\EntityFormController::validate().
    */
   public function validate(array $form, array &$form_state) {
     $feed = $this->buildEntity($form, $form_state);
@@ -109,14 +109,14 @@ public function validate(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::save().
+   * Overrides \Drupal\Core\Entity\EntityFormController::save().
    */
   public function save(array $form, array &$form_state) {
     $feed = $this->entity;
     $insert = (bool) $feed->id();
     if (!empty($form_state['values']['category'])) {
       // Store category values for post save operations.
-      // @see Drupal\Core\Entity\FeedStorageController::postSave()
+      // @see \Drupal\Core\Entity\FeedStorageController::postSave()
       $feed->categories = $form_state['values']['category'];
     }
     $feed->save();
@@ -136,7 +136,7 @@ public function save(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::delete().
+   * Overrides \Drupal\Core\Entity\EntityFormController::delete().
    */
   public function delete(array $form, array &$form_state) {
     $form_state['redirect'] = 'admin/config/services/aggregator/delete/feed/' . $this->entity->id();
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedRenderController.php b/core/modules/aggregator/lib/Drupal/aggregator/FeedRenderController.php
index 47de47b..aafdb3c 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/FeedRenderController.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/FeedRenderController.php
@@ -16,7 +16,7 @@
 class FeedRenderController extends EntityRenderController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::getBuildDefaults().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::getBuildDefaults().
    */
   protected function getBuildDefaults(EntityInterface $entity, $view_mode, $langcode) {
     $defaults = parent::getBuildDefaults($entity, $view_mode, $langcode);
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedStorageController.php b/core/modules/aggregator/lib/Drupal/aggregator/FeedStorageController.php
index 36d87eb..a5c3065 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/FeedStorageController.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/FeedStorageController.php
@@ -14,13 +14,13 @@
 /**
  * Controller class for aggregators feeds.
  *
- * This extends the Drupal\Core\Entity\DatabaseStorageController class, adding
+ * This extends the \Drupal\Core\Entity\DatabaseStorageController class, adding
  * required special handling for feed entities.
  */
 class FeedStorageController extends DatabaseStorageControllerNG implements FeedStorageControllerInterface {
 
   /**
-   * Overrides Drupal\Core\Entity\DataBaseStorageController::attachLoad().
+   * Overrides \Drupal\Core\Entity\DataBaseStorageController::attachLoad().
    */
   protected function attachLoad(&$queried_entities, $load_revision = FALSE) {
     parent::attachLoad($queried_entities, $load_revision);
@@ -28,7 +28,7 @@ protected function attachLoad(&$queried_entities, $load_revision = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\DataBaseStorageControllerNG::baseFieldDefinitions().
+   * Implements \Drupal\Core\Entity\DataBaseStorageControllerNG::baseFieldDefinitions().
    */
   public function baseFieldDefinitions() {
     $fields['fid'] = array(
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemRenderController.php b/core/modules/aggregator/lib/Drupal/aggregator/ItemRenderController.php
index af11005..b7d456a 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/ItemRenderController.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/ItemRenderController.php
@@ -16,7 +16,7 @@
 class ItemRenderController extends EntityRenderController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::getBuildDefaults().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::getBuildDefaults().
    */
   protected function getBuildDefaults(EntityInterface $entity, $view_mode, $langcode) {
     $defaults = parent::getBuildDefaults($entity, $view_mode, $langcode);
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageController.php b/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageController.php
index 016e8ae..ced80e6 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageController.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageController.php
@@ -14,13 +14,13 @@
 /**
  * Controller class for aggregators items.
  *
- * This extends the Drupal\Core\Entity\DatabaseStorageController class, adding
+ * This extends the \Drupal\Core\Entity\DatabaseStorageController class, adding
  * required special handling for feed item entities.
  */
 class ItemStorageController extends DatabaseStorageControllerNG implements ItemStorageControllerInterface {
 
   /**
-   * Overrides Drupal\Core\Entity\DataBaseStorageController::attachLoad().
+   * Overrides \Drupal\Core\Entity\DataBaseStorageController::attachLoad().
    */
   protected function attachLoad(&$queried_entities, $load_revision = FALSE) {
     parent::attachLoad($queried_entities, $load_revision);
@@ -28,7 +28,7 @@ protected function attachLoad(&$queried_entities, $load_revision = FALSE) {
   }
 
   /**
-   * Implements Drupal\Core\Entity\DataBaseStorageControllerNG::baseFieldDefinitions().
+   * Implements \Drupal\Core\Entity\DataBaseStorageControllerNG::baseFieldDefinitions().
    */
   public function baseFieldDefinitions() {
     $fields['iid'] = array(
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageControllerInterface.php b/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageControllerInterface.php
index 5c00345..675a717 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageControllerInterface.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/ItemStorageControllerInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\aggregator\ItemStorageControllerInterface.
+ * Contains \Drupal\aggregator\ItemStorageControllerInterface.
  */
 
 namespace Drupal\aggregator;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Feed.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Feed.php
index 73c015d..95198d3 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Feed.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Feed.php
@@ -142,7 +142,7 @@ class Feed extends EntityNG implements FeedInterface {
   public $block;
 
   /**
-   * Overrides Drupal\Core\Entity\EntityNG::init().
+   * Overrides \Drupal\Core\Entity\EntityNG::init().
    */
   public function init() {
     parent::init();
@@ -164,14 +164,14 @@ public function init() {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityInterface::id().
+   * Implements \Drupal\Core\Entity\EntityInterface::id().
    */
   public function id() {
     return $this->get('fid')->value;
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityInterface::label().
+   * Implements \Drupal\Core\Entity\EntityInterface::label().
    */
   public function label($langcode = NULL) {
     return $this->get('title')->value;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Item.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Item.php
index 6da20f3..a226209 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Item.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/Core/Entity/Item.php
@@ -102,7 +102,7 @@ class Item extends EntityNG implements ItemInterface {
   public $guid;
 
   /**
-   * Overrides Drupal\Core\Entity\EntityNG::init().
+   * Overrides \Drupal\Core\Entity\EntityNG::init().
    */
   public function init() {
     parent::init();
@@ -119,14 +119,14 @@ public function init() {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityInterface::id().
+   * Implements \Drupal\Core\Entity\EntityInterface::id().
    */
   public function id() {
     return $this->get('iid')->value;
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityInterface::label().
+   * Implements \Drupal\Core\Entity\EntityInterface::label().
    */
   public function label($langcode = NULL) {
     return $this->get('title')->value;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/CategoryCid.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/CategoryCid.php
index fb55a40..c87109b 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/CategoryCid.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/CategoryCid.php
@@ -30,7 +30,7 @@ class CategoryCid extends Numeric {
   protected $database;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Fid.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Fid.php
index f77fb02..ec0e87a 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Fid.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Fid.php
@@ -30,7 +30,7 @@ class Fid extends Numeric {
   protected $entityManager;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Iid.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Iid.php
index 1ce1864..cc6a298 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Iid.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/argument/Iid.php
@@ -30,7 +30,7 @@ class Iid extends Numeric {
   protected $entityManager;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/filter/CategoryCid.php b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/filter/CategoryCid.php
index bb5f705..747e476 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/filter/CategoryCid.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Plugin/views/filter/CategoryCid.php
@@ -27,7 +27,7 @@ class CategoryCid extends InOperator {
   protected $database;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AddFeedTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AddFeedTest.php
index 6d27c91..7f52504 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AddFeedTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AddFeedTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\AddFeedTest.
+ * Definition of \Drupal\aggregator\Tests\AddFeedTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorConfigurationTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorConfigurationTest.php
index 59d5339..723687e 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorConfigurationTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorConfigurationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\AggregatorConfigurationTest.
+ * Definition of \Drupal\aggregator\Tests\AggregatorConfigurationTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorCronTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorCronTest.php
index 36fcd05..accf013 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorCronTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorCronTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\AggregatorCronTest.
+ * Definition of \Drupal\aggregator\Tests\AggregatorCronTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php
index 8d50401..301af8c 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorRenderingTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\AggregatorRenderingTest.
+ * Definition of \Drupal\aggregator\Tests\AggregatorRenderingTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php
index 6450975..e429885 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/AggregatorTestBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\AggregatorTestBase.
+ * Definition of \Drupal\aggregator\Tests\AggregatorTestBase.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedItemTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedItemTest.php
index 2485f17..859b30b 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedItemTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedItemTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\CategorizeFeedItemTest.
+ * Definition of \Drupal\aggregator\Tests\CategorizeFeedItemTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php
index 569f26a..95465f9 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/CategorizeFeedTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\CategorizeFeedTest.
+ * Definition of \Drupal\aggregator\Tests\CategorizeFeedTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedParserTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedParserTest.php
index bdbe11f..21792bc 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedParserTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/FeedParserTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\FeedParserTest.
+ * Definition of \Drupal\aggregator\Tests\FeedParserTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/ImportOpmlTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/ImportOpmlTest.php
index 7a9f463..60ab3fa 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/ImportOpmlTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/ImportOpmlTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\ImportOpmlTest.
+ * Definition of \Drupal\aggregator\Tests\ImportOpmlTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedItemTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedItemTest.php
index b27432d..bc8834e 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedItemTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedItemTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\RemoveFeedItemTest.
+ * Definition of \Drupal\aggregator\Tests\RemoveFeedItemTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php
index f16665d..5765668 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/RemoveFeedTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\RemoveFeedTest.
+ * Definition of \Drupal\aggregator\Tests\RemoveFeedTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedItemTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedItemTest.php
index 2cc1c8c..e2637ea 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedItemTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedItemTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\UpdateFeedItemTest.
+ * Definition of \Drupal\aggregator\Tests\UpdateFeedItemTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedTest.php b/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedTest.php
index 8b25bc7..fbcb7fa 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedTest.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/Tests/UpdateFeedTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\aggregator\Tests\UpdateFeedTest.
+ * Definition of \Drupal\aggregator\Tests\UpdateFeedTest.
  */
 
 namespace Drupal\aggregator\Tests;
diff --git a/core/modules/ban/lib/Drupal/ban/BanIpManager.php b/core/modules/ban/lib/Drupal/ban/BanIpManager.php
index b17f1bb..feff89f 100644
--- a/core/modules/ban/lib/Drupal/ban/BanIpManager.php
+++ b/core/modules/ban/lib/Drupal/ban/BanIpManager.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\ban\BanIpManager.
+ * Definition of \Drupal\ban\BanIpManager.
  */
 
 namespace Drupal\ban;
diff --git a/core/modules/ban/lib/Drupal/ban/EventSubscriber/BanSubscriber.php b/core/modules/ban/lib/Drupal/ban/EventSubscriber/BanSubscriber.php
index 8d9f2ad..85cc472 100644
--- a/core/modules/ban/lib/Drupal/ban/EventSubscriber/BanSubscriber.php
+++ b/core/modules/ban/lib/Drupal/ban/EventSubscriber/BanSubscriber.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\ban\EventSubscriber\BanSubscriber.
+ * Definition of \Drupal\ban\EventSubscriber\BanSubscriber.
  */
 
 namespace Drupal\ban\EventSubscriber;
@@ -22,14 +22,14 @@ class BanSubscriber implements EventSubscriberInterface {
   /**
    * The manager used to check the IP against.
    *
-   * @var Drupal\ban\BanIpManager
+   * @var \Drupal\ban\BanIpManager
    */
   protected $manager;
 
   /**
    * Construct the BanSubscriber.
    *
-   * @param Drupal\ban\BanIpManager $manager
+   * @param \Drupal\ban\BanIpManager $manager
    *   The manager used to check the IP against.
    */
   public function __construct(BanIpManager $manager) {
diff --git a/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php b/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php
index 8009de3..8d8dd3d 100644
--- a/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php
+++ b/core/modules/ban/lib/Drupal/ban/Tests/IpAddressBlockingTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\ban\Tests\IpAddressBlockingTest.
+ * Definition of \Drupal\ban\Tests\IpAddressBlockingTest.
  */
 
 namespace Drupal\ban\Tests;
diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockInterface.php b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockInterface.php
index e650389..2d5a729 100644
--- a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockInterface.php
+++ b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockInterface.php
@@ -42,7 +42,7 @@ public function getTheme();
    * Gets the configured instances of this custom block.
    *
    * @return array
-   *   Array of Drupal\block\Core\Plugin\Entity\Block entities.
+   *   Array of \Drupal\block\Core\Plugin\Entity\Block entities.
    */
   public function getInstances();
 
diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockStorageController.php b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockStorageController.php
index 0698234..1bef9cf 100644
--- a/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockStorageController.php
+++ b/core/modules/block/custom_block/lib/Drupal/custom_block/CustomBlockStorageController.php
@@ -13,7 +13,7 @@
 /**
  * Controller class for custom blocks.
  *
- * This extends the Drupal\Core\Entity\DatabaseStorageControllerNG class,
+ * This extends the \Drupal\Core\Entity\DatabaseStorageControllerNG class,
  * adding required special handling for custom block entities.
  */
 class CustomBlockStorageController extends DatabaseStorageControllerNG implements EntityStorageControllerInterface {
diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTestBase.php b/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTestBase.php
index 55d6bb9..e0e13b2 100644
--- a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTestBase.php
+++ b/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTestBase.php
@@ -59,7 +59,7 @@ protected function setUp() {
    * @param string $bundle
    *   (optional) Bundle name. Defaults to 'basic'.
    *
-   * @return Drupal\custom_block\Plugin\Core\Entity\CustomBlock
+   * @return \Drupal\custom_block\Plugin\Core\Entity\CustomBlock
    *   Created custom block.
    */
   protected function createCustomBlock($title = FALSE, $bundle = 'basic') {
@@ -80,7 +80,7 @@ protected function createCustomBlock($title = FALSE, $bundle = 'basic') {
    * @param string $label
    *   The block type label.
    *
-   * @return Drupal\custom_block\Plugin\Core\Entity\CustomBlockType
+   * @return \Drupal\custom_block\Plugin\Core\Entity\CustomBlockType
    *   Created custom block type.
    */
   protected function createCustomBlockType($label) {
diff --git a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTranslationUITest.php b/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTranslationUITest.php
index dbb9aba..6e8c9b9 100644
--- a/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTranslationUITest.php
+++ b/core/modules/block/custom_block/lib/Drupal/custom_block/Tests/CustomBlockTranslationUITest.php
@@ -77,7 +77,7 @@ public function getTranslatorPermissions() {
    *   (optional) Bundle name. When no value is given, defaults to
    *   $this->bundle. Defaults to FALSE.
    *
-   * @return Drupal\custom_block\Plugin\Core\Entity\CustomBlock
+   * @return \Drupal\custom_block\Plugin\Core\Entity\CustomBlock
    *   Created custom block.
    */
   protected function createCustomBlock($title = FALSE, $bundle = FALSE) {
diff --git a/core/modules/block/lib/Drupal/block/BlockRenderController.php b/core/modules/block/lib/Drupal/block/BlockRenderController.php
index 45a85d9..12ca208 100644
--- a/core/modules/block/lib/Drupal/block/BlockRenderController.php
+++ b/core/modules/block/lib/Drupal/block/BlockRenderController.php
@@ -23,7 +23,7 @@ public function buildContent(array $entities, array $displays, $view_mode, $lang
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityRenderControllerInterface::view().
+   * Implements \Drupal\Core\Entity\EntityRenderControllerInterface::view().
    */
   public function view(EntityInterface $entity, $view_mode = 'full', $langcode = NULL) {
     $build = $this->viewMultiple(array($entity), $view_mode, $langcode);
@@ -31,7 +31,7 @@ public function view(EntityInterface $entity, $view_mode = 'full', $langcode = N
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityRenderControllerInterface::viewMultiple().
+   * Implements \Drupal\Core\Entity\EntityRenderControllerInterface::viewMultiple().
    */
   public function viewMultiple(array $entities = array(), $view_mode = 'full', $langcode = NULL) {
     $build = array();
diff --git a/core/modules/block/lib/Drupal/block/Plugin/views/display/Block.php b/core/modules/block/lib/Drupal/block/Plugin/views/display/Block.php
index 121d2de..c4ffc63 100644
--- a/core/modules/block/lib/Drupal/block/Plugin/views/display/Block.php
+++ b/core/modules/block/lib/Drupal/block/Plugin/views/display/Block.php
@@ -2,8 +2,8 @@
 
 /**
  * @file
- * Definition of Drupal\views\Plugin\views\display\Block.
- * Definition of Drupal\block\Plugin\views\display\Block.
+ * Definition of \Drupal\views\Plugin\views\display\Block.
+ * Definition of \Drupal\block\Plugin\views\display\Block.
  */
 
 namespace Drupal\block\Plugin\views\display;
diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockAdminThemeTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockAdminThemeTest.php
index 8c64ac8..f3e42fc 100644
--- a/core/modules/block/lib/Drupal/block/Tests/BlockAdminThemeTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/BlockAdminThemeTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\BlockAdminThemeTest.
+ * Definition of \Drupal\block\Tests\BlockAdminThemeTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockCacheTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockCacheTest.php
index ebbdd18..969e98b 100644
--- a/core/modules/block/lib/Drupal/block/Tests/BlockCacheTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/BlockCacheTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\BlockCacheTest.
+ * Definition of \Drupal\block\Tests\BlockCacheTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockHiddenRegionTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockHiddenRegionTest.php
index 710c53f..3920623 100644
--- a/core/modules/block/lib/Drupal/block/Tests/BlockHiddenRegionTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/BlockHiddenRegionTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\BlockHiddenRegionTest.
+ * Definition of \Drupal\block\Tests\BlockHiddenRegionTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockHtmlIdTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockHtmlIdTest.php
index 31bce89..5c6738e 100644
--- a/core/modules/block/lib/Drupal/block/Tests/BlockHtmlIdTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/BlockHtmlIdTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\BlockHtmlIdTest.
+ * Definition of \Drupal\block\Tests\BlockHtmlIdTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php
index 54417f8..069f9ae 100644
--- a/core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\BlockInvalidRegionTest.
+ * Definition of \Drupal\block\Tests\BlockInvalidRegionTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockLanguageTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockLanguageTest.php
index 69d5ccd..1c8b884 100644
--- a/core/modules/block/lib/Drupal/block/Tests/BlockLanguageTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/BlockLanguageTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\BlockLanguageTest.
+ * Definition of \Drupal\block\Tests\BlockLanguageTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php b/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php
index 51630ba..2d39e2f 100644
--- a/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/BlockTemplateSuggestionsUnitTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\BlockTemplateSuggestionsUnitTest.
+ * Definition of \Drupal\block\Tests\BlockTemplateSuggestionsUnitTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/NewDefaultThemeBlocksTest.php b/core/modules/block/lib/Drupal/block/Tests/NewDefaultThemeBlocksTest.php
index f9a7792..72ded9c 100644
--- a/core/modules/block/lib/Drupal/block/Tests/NewDefaultThemeBlocksTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/NewDefaultThemeBlocksTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\NewDefaultThemeBlocksTest.
+ * Definition of \Drupal\block\Tests\NewDefaultThemeBlocksTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/block/lib/Drupal/block/Tests/NonDefaultBlockAdminTest.php b/core/modules/block/lib/Drupal/block/Tests/NonDefaultBlockAdminTest.php
index 7cf114c..f12170e 100644
--- a/core/modules/block/lib/Drupal/block/Tests/NonDefaultBlockAdminTest.php
+++ b/core/modules/block/lib/Drupal/block/Tests/NonDefaultBlockAdminTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\block\Tests\NonDefaultBlockAdminTest.
+ * Definition of \Drupal\block\Tests\NonDefaultBlockAdminTest.
  */
 
 namespace Drupal\block\Tests;
diff --git a/core/modules/book/lib/Drupal/book/Tests/BookTest.php b/core/modules/book/lib/Drupal/book/Tests/BookTest.php
index b13a4e7..00c8923 100644
--- a/core/modules/book/lib/Drupal/book/Tests/BookTest.php
+++ b/core/modules/book/lib/Drupal/book/Tests/BookTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\book\Tests\BookTest.
+ * Definition of \Drupal\book\Tests\BookTest.
  */
 
 namespace Drupal\book\Tests;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointException.php b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointException.php
index 6889fa2..df82e53 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointException.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\breakpoint\InvalidBreakpointException.
+ * Definition of \Drupal\breakpoint\InvalidBreakpointException.
  */
 
 namespace Drupal\breakpoint;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointMediaQueryException.php b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointMediaQueryException.php
index 3999965..173b61d 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointMediaQueryException.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointMediaQueryException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\breakpoint\InvalidBreakpointMediaQueryException.
+ * Definition of \Drupal\breakpoint\InvalidBreakpointMediaQueryException.
  */
 
 namespace Drupal\breakpoint;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointNameException.php b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointNameException.php
index 1121465..d5e0f53 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointNameException.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointNameException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\breakpoint\InvalidBreakpointNameException.
+ * Definition of \Drupal\breakpoint\InvalidBreakpointNameException.
  */
 
 namespace Drupal\breakpoint;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceException.php b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceException.php
index 3ad5556..fef79f3 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceException.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\breakpoint\InvalidBreakpointSourceException.
+ * Definition of \Drupal\breakpoint\InvalidBreakpointSourceException.
  */
 
 namespace Drupal\breakpoint;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceTypeException.php b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceTypeException.php
index d9e2483..5b0fc0c 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceTypeException.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/InvalidBreakpointSourceTypeException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\breakpoint\InvalidBreakpointSourceTypeException.
+ * Definition of \Drupal\breakpoint\InvalidBreakpointSourceTypeException.
  */
 
 namespace Drupal\breakpoint;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/Breakpoint.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/Breakpoint.php
index 59c87e9..7bb08b5 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/Breakpoint.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/Breakpoint.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\breakpoint\Plugin\Core\Entity\Breakpoint.
+ * Definition of \Drupal\breakpoint\Plugin\Core\Entity\Breakpoint.
  */
 
 namespace Drupal\breakpoint\Plugin\Core\Entity;
@@ -120,7 +120,7 @@ class Breakpoint extends ConfigEntityBase implements BreakpointInterface {
   public $multipliers = array();
 
   /**
-   * Overrides Drupal\config\ConfigEntityBase::save().
+   * Overrides \Drupal\config\ConfigEntityBase::save().
    */
   public function save() {
     // Check if everything is valid.
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/BreakpointGroup.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/BreakpointGroup.php
index 4a34ce2..ee02091 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/BreakpointGroup.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Plugin/Core/Entity/BreakpointGroup.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\breakpoint\Plugin\Core\Entity\BreakpointGroup.
+ * Definition of \Drupal\breakpoint\Plugin\Core\Entity\BreakpointGroup.
  */
 
 namespace Drupal\breakpoint\Plugin\Core\Entity;
@@ -68,7 +68,7 @@ class BreakpointGroup extends ConfigEntityBase implements BreakpointGroupInterfa
    * @var array
    *   Array containing all breakpoints of this group.
    *
-   * @see Drupal\breakpoint\Plugin\Core\Entity\Breakpoint
+   * @see \Drupal\breakpoint\Plugin\Core\Entity\Breakpoint
    */
   public $breakpoints = array();
 
@@ -89,12 +89,12 @@ class BreakpointGroup extends ConfigEntityBase implements BreakpointGroupInterfa
    *     Breakpoint::SOURCE_TYPE_MODULE
    *     Breakpoint::SOURCE_TYPE_USER_DEFINED
    *
-   * @see Drupal\breakpoint\Plugin\Core\Entity\Breakpoint
+   * @see \Drupal\breakpoint\Plugin\Core\Entity\Breakpoint
    */
   public $sourceType = Breakpoint::SOURCE_TYPE_USER_DEFINED;
 
   /**
-   * Overrides Drupal\config\ConfigEntityBase::__construct().
+   * Overrides \Drupal\config\ConfigEntityBase::__construct().
    */
   public function __construct(array $values, $entity_type) {
     parent::__construct($values, $entity_type);
@@ -102,7 +102,7 @@ public function __construct(array $values, $entity_type) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\Entity::save().
+   * Overrides \Drupal\Core\Entity\Entity::save().
    */
   public function save() {
     // Check if everything is valid.
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointAPITest.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointAPITest.php
index f65b559..73edfe6 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointAPITest.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointAPITest.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointAPITest.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointAPITest.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointCRUDTest.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointCRUDTest.php
index 37caff7..f271cf2 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointCRUDTest.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointCRUDTest.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointCRUDTest.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointCRUDTest.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupAPITest.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupAPITest.php
index d2bc016..d697409 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupAPITest.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupAPITest.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointGroupAPITest.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointGroupAPITest.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupCRUDTest.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupCRUDTest.php
index 05eaeaf..7615734 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupCRUDTest.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupCRUDTest.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointGroupCRUDTest.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointGroupCRUDTest.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupTestBase.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupTestBase.php
index ee1e57d..024f596 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupTestBase.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointGroupTestBase.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointGroupTestBase.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointGroupTestBase.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointTestBase.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointTestBase.php
index cca4d62..5ca7443 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointTestBase.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointTestBase.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointTestBase.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointTestBase.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointThemeTest.php b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointThemeTest.php
index 0091300..7a56f36 100644
--- a/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointThemeTest.php
+++ b/core/modules/breakpoint/lib/Drupal/breakpoint/Tests/BreakpointThemeTest.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointsThemeTest.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointsThemeTest.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php b/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php
index 1e2524f..b940512 100644
--- a/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php
+++ b/core/modules/breakpoint/tests/Drupal/breakpoint/Tests/BreakpointMediaQueryTest.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\breakpoint\Tests\BreakpointMediaQueryTest.
+ * Definition of \Drupal\breakpoint\Tests\BreakpointMediaQueryTest.
  */
 
 namespace Drupal\breakpoint\Tests;
diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Annotation/CKEditorPlugin.php b/core/modules/ckeditor/lib/Drupal/ckeditor/Annotation/CKEditorPlugin.php
index 542697a..d327fd0 100644
--- a/core/modules/ckeditor/lib/Drupal/ckeditor/Annotation/CKEditorPlugin.php
+++ b/core/modules/ckeditor/lib/Drupal/ckeditor/Annotation/CKEditorPlugin.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\ckeditor\Annotation\CKEditorPlugin.
+ * Contains \Drupal\ckeditor\Annotation\CKEditorPlugin.
  */
 
 namespace Drupal\ckeditor\Annotation;
diff --git a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/Editor/CKEditor.php b/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/Editor/CKEditor.php
index 6845a1f..4d1c4a7 100644
--- a/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/Editor/CKEditor.php
+++ b/core/modules/ckeditor/lib/Drupal/ckeditor/Plugin/Editor/CKEditor.php
@@ -35,7 +35,7 @@ class CKEditor extends EditorBase implements ContainerFactoryPluginInterface {
   protected $ckeditorPluginManager;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
diff --git a/core/modules/color/lib/Drupal/color/Tests/ColorTest.php b/core/modules/color/lib/Drupal/color/Tests/ColorTest.php
index 13627cc..1dce2a5 100644
--- a/core/modules/color/lib/Drupal/color/Tests/ColorTest.php
+++ b/core/modules/color/lib/Drupal/color/Tests/ColorTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\color\Tests\ColorTest.
+ * Definition of \Drupal\color\Tests\ColorTest.
  */
 
 namespace Drupal\color\Tests;
diff --git a/core/modules/comment/comment.api.php b/core/modules/comment/comment.api.php
index ec1707f..107acc8 100644
--- a/core/modules/comment/comment.api.php
+++ b/core/modules/comment/comment.api.php
@@ -18,10 +18,10 @@
  * This hook is invoked from $comment->save() before the comment is saved to the
  * database.
  *
- * @param Drupal\comment\Comment $comment
+ * @param \Drupal\comment\Comment $comment
  *   The comment object.
  */
-function hook_comment_presave(Drupal\comment\Comment $comment) {
+function hook_comment_presave(\Drupal\comment\Comment $comment) {
   // Remove leading & trailing spaces from the comment subject.
   $comment->subject->value = trim($comment->subject->value);
 }
@@ -29,10 +29,10 @@ function hook_comment_presave(Drupal\comment\Comment $comment) {
 /**
  * Respond to creation of a new comment.
  *
- * @param Drupal\comment\Comment $comment
+ * @param \Drupal\comment\Comment $comment
  *   The comment object.
  */
-function hook_comment_insert(Drupal\comment\Comment $comment) {
+function hook_comment_insert(\Drupal\comment\Comment $comment) {
   // Reindex the node when comments are added.
   search_touch_node($comment->nid->target_id);
 }
@@ -40,10 +40,10 @@ function hook_comment_insert(Drupal\comment\Comment $comment) {
 /**
  * Respond to updates to a comment.
  *
- * @param Drupal\comment\Comment $comment
+ * @param \Drupal\comment\Comment $comment
  *   The comment object.
  */
-function hook_comment_update(Drupal\comment\Comment $comment) {
+function hook_comment_update(\Drupal\comment\Comment $comment) {
   // Reindex the node when comments are updated.
   search_touch_node($comment->nid->target_id);
 }
@@ -69,7 +69,7 @@ function hook_comment_create(\Drupal\comment\Plugin\Core\Entity\Comment $comment
  * @param array $comments
  *  An array of comment objects indexed by cid.
  */
-function hook_comment_load(Drupal\comment\Comment $comments) {
+function hook_comment_load(\Drupal\comment\Comment $comments) {
   $result = db_query('SELECT cid, foo FROM {mytable} WHERE cid IN (:cids)', array(':cids' => array_keys($comments)));
   foreach ($result as $record) {
     $comments[$record->cid]->foo = $record->foo;
@@ -140,20 +140,20 @@ function hook_comment_view_alter(&$build, \Drupal\comment\Plugin\Core\Entity\Com
 /**
  * Respond to a comment being published by a moderator.
  *
- * @param Drupal\comment\Comment $comment
+ * @param \Drupal\comment\Comment $comment
  *   The comment the action is being performed on.
  */
-function hook_comment_publish(Drupal\comment\Comment $comment) {
+function hook_comment_publish(\Drupal\comment\Comment $comment) {
   drupal_set_message(t('Comment: @subject has been published', array('@subject' => $comment->subject->value)));
 }
 
 /**
  * Respond to a comment being unpublished by a moderator.
  *
- * @param Drupal\comment\Comment $comment
+ * @param \Drupal\comment\Comment $comment
  *   The comment the action is being performed on.
  */
-function hook_comment_unpublish(Drupal\comment\Comment $comment) {
+function hook_comment_unpublish(\Drupal\comment\Comment $comment) {
   drupal_set_message(t('Comment: @subject has been unpublished', array('@subject' => $comment->subject->value)));
 }
 
@@ -164,13 +164,13 @@ function hook_comment_unpublish(Drupal\comment\Comment $comment) {
  * field_attach_delete() is called and before the comment is actually removed
  * from the database.
  *
- * @param Drupal\comment\Comment $comment
+ * @param \Drupal\comment\Comment $comment
  *   The comment object for the comment that is about to be deleted.
  *
  * @see hook_comment_delete()
  * @see entity_delete_multiple()
  */
-function hook_comment_predelete(Drupal\comment\Comment $comment) {
+function hook_comment_predelete(\Drupal\comment\Comment $comment) {
   // Delete a record associated with the comment in a custom table.
   db_delete('example_comment_table')
     ->condition('cid', $comment->id())
@@ -184,13 +184,13 @@ function hook_comment_predelete(Drupal\comment\Comment $comment) {
  * field_attach_delete() has called and after the comment has been removed from
  * the database.
  *
- * @param Drupal\comment\Comment $comment
+ * @param \Drupal\comment\Comment $comment
  *   The comment object for the comment that has been deleted.
  *
  * @see hook_comment_predelete()
  * @see entity_delete_multiple()
  */
-function hook_comment_delete(Drupal\comment\Comment $comment) {
+function hook_comment_delete(\Drupal\comment\Comment $comment) {
   drupal_set_message(t('Comment: @subject has been deleted', array('@subject' => $comment->subject->value)));
 }
 
diff --git a/core/modules/comment/lib/Drupal/comment/CommentFormController.php b/core/modules/comment/lib/Drupal/comment/CommentFormController.php
index e2040d5..dfd0604 100644
--- a/core/modules/comment/lib/Drupal/comment/CommentFormController.php
+++ b/core/modules/comment/lib/Drupal/comment/CommentFormController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\CommentFormController.
+ * Definition of \Drupal\comment\CommentFormController.
  */
 
 namespace Drupal\comment;
@@ -17,7 +17,7 @@
 class CommentFormController extends EntityFormControllerNG {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::form().
+   * Overrides \Drupal\Core\Entity\EntityFormController::form().
    */
   public function form(array $form, array &$form_state) {
     global $user;
@@ -167,7 +167,7 @@ public function form(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::actions().
+   * Overrides \Drupal\Core\Entity\EntityFormController::actions().
    */
   protected function actions(array $form, array &$form_state) {
     $element = parent::actions($form, $form_state);
@@ -202,7 +202,7 @@ protected function actions(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::validate().
+   * Overrides \Drupal\Core\Entity\EntityFormController::validate().
    */
   public function validate(array $form, array &$form_state) {
     parent::validate($form, $form_state);
@@ -255,7 +255,7 @@ public function buildEntity(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::submit().
+   * Overrides \Drupal\Core\Entity\EntityFormController::submit().
    */
   public function submit(array $form, array &$form_state) {
     $comment = parent::submit($form, $form_state);
@@ -307,7 +307,7 @@ public function preview(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::save().
+   * Overrides \Drupal\Core\Entity\EntityFormController::save().
    */
   public function save(array $form, array &$form_state) {
     $node = node_load($form_state['values']['nid']);
diff --git a/core/modules/comment/lib/Drupal/comment/CommentRenderController.php b/core/modules/comment/lib/Drupal/comment/CommentRenderController.php
index c6b21f0..4c0ff45 100644
--- a/core/modules/comment/lib/Drupal/comment/CommentRenderController.php
+++ b/core/modules/comment/lib/Drupal/comment/CommentRenderController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\CommentRenderController.
+ * Definition of \Drupal\comment\CommentRenderController.
  */
 
 namespace Drupal\comment;
@@ -17,7 +17,7 @@
 class CommentRenderController extends EntityRenderController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::buildContent().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::buildContent().
    *
    * In addition to modifying the content key on entities, this implementation
    * will also set the node key which all comments carry.
@@ -70,7 +70,7 @@ public function buildContent(array $entities, array $displays, $view_mode, $lang
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::alterBuild().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::alterBuild().
    */
   protected function alterBuild(array &$build, EntityInterface $comment, EntityDisplay $display, $view_mode, $langcode = NULL) {
     parent::alterBuild($build, $comment, $display, $view_mode, $langcode);
diff --git a/core/modules/comment/lib/Drupal/comment/CommentStorageController.php b/core/modules/comment/lib/Drupal/comment/CommentStorageController.php
index 4e6ca4c..5ea2c03 100644
--- a/core/modules/comment/lib/Drupal/comment/CommentStorageController.php
+++ b/core/modules/comment/lib/Drupal/comment/CommentStorageController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\CommentStorageController.
+ * Definition of \Drupal\comment\CommentStorageController.
  */
 
 namespace Drupal\comment;
@@ -15,7 +15,7 @@
 /**
  * Defines the controller class for comments.
  *
- * This extends the Drupal\Core\Entity\DatabaseStorageController class, adding
+ * This extends the \Drupal\Core\Entity\DatabaseStorageController class, adding
  * required special handling for comment entities.
  */
 class CommentStorageController extends DatabaseStorageControllerNG implements CommentStorageControllerInterface {
diff --git a/core/modules/comment/lib/Drupal/comment/CommentTranslationController.php b/core/modules/comment/lib/Drupal/comment/CommentTranslationController.php
index df70b15..592907f 100644
--- a/core/modules/comment/lib/Drupal/comment/CommentTranslationController.php
+++ b/core/modules/comment/lib/Drupal/comment/CommentTranslationController.php
@@ -3,7 +3,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\CommentTranslationController.
+ * Definition of \Drupal\comment\CommentTranslationController.
  */
 
 namespace Drupal\comment;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/Core/Entity/Comment.php b/core/modules/comment/lib/Drupal/comment/Plugin/Core/Entity/Comment.php
index 700b629..3b107f2 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/Core/Entity/Comment.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/Core/Entity/Comment.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\Core\Entity\Comment.
+ * Definition of \Drupal\comment\Plugin\Core\Entity\Comment.
  */
 
 namespace Drupal\comment\Plugin\Core\Entity;
@@ -205,7 +205,7 @@ protected function init() {
   }
 
   /**
-   * Implements Drupal\Core\Entity\EntityInterface::id().
+   * Implements \Drupal\Core\Entity\EntityInterface::id().
    */
   public function id() {
     return $this->get('cid')->value;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/argument/UserUid.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/argument/UserUid.php
index 0b10dca..1cc6e38 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/argument/UserUid.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/argument/UserUid.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\argument\UserUid.
+ * Definition of \Drupal\comment\Plugin\views\argument\UserUid.
  */
 
 namespace Drupal\comment\Plugin\views\argument;
@@ -30,7 +30,7 @@ class UserUid extends ArgumentPluginBase {
   protected $database;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php
index e9143ae..764134d 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Comment.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\Comment.
+ * Definition of \Drupal\comment\Plugin\views\field\Comment.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Depth.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Depth.php
index 08b9d8d..c1ca12a 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Depth.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Depth.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\Depth.
+ * Definition of \Drupal\comment\Plugin\views\field\Depth.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php
index 5b2c61d..a36875f 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LastTimestamp.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\LastTimestamp.
+ * Definition of \Drupal\comment\Plugin\views\field\LastTimestamp.
  */
 
 namespace Drupal\comment\Plugin\views\field;
@@ -22,7 +22,7 @@
 class LastTimestamp extends Date {
 
   /**
-   * Overrides Drupal\views\Plugin\views\field\FieldPluginBase::init().
+   * Overrides \Drupal\views\Plugin\views\field\FieldPluginBase::init().
    */
   public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
     parent::init($view, $display, $options);
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php
index d1e19f5..c89c2c9 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\Link.
+ * Definition of \Drupal\comment\Plugin\views\field\Link.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php
index 49bcb58..72f7f85 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/LinkApprove.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\LinkApprove.
+ * Definition of \Drupal\comment\Plugin\views\field\LinkApprove.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastCommentName.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastCommentName.php
index 2853ad8..ef5a845 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastCommentName.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastCommentName.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\NcsLastCommentName.
+ * Definition of \Drupal\comment\Plugin\views\field\NcsLastCommentName.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastUpdated.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastUpdated.php
index f6209f2..1a1c546 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastUpdated.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NcsLastUpdated.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\NcsLastUpdated.
+ * Definition of \Drupal\comment\Plugin\views\field\NcsLastUpdated.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeComment.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeComment.php
index 55c366b..7a55548 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeComment.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeComment.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\NodeComment.
+ * Definition of \Drupal\comment\Plugin\views\field\NodeComment.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeLink.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeLink.php
index cdb3786..684f65d 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeLink.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeLink.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\NodeLink.
+ * Definition of \Drupal\comment\Plugin\views\field\NodeLink.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php
index c19b84c..4e308ff 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/NodeNewComments.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\NodeNewComments.
+ * Definition of \Drupal\comment\Plugin\views\field\NodeNewComments.
  */
 
 namespace Drupal\comment\Plugin\views\field;
@@ -31,7 +31,7 @@ class NodeNewComments extends Numeric {
   protected $database;
 
   /**
-   * Constructs a Drupal\Component\Plugin\PluginBase object.
+   * Constructs a \Drupal\Component\Plugin\PluginBase object.
    *
    * @param array $configuration
    *   A configuration array containing information about the plugin instance.
@@ -56,7 +56,7 @@ public static function create(ContainerInterface $container, array $configuratio
   }
 
   /**
-   * Overrides Drupal\views\Plugin\views\field\FieldPluginBase::init().
+   * Overrides \Drupal\views\Plugin\views\field\FieldPluginBase::init().
    */
   public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
     parent::init($view, $display, $options);
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php
index df362d9..7ba5fa9 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Username.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\field\Username.
+ * Definition of \Drupal\comment\Plugin\views\field\Username.
  */
 
 namespace Drupal\comment\Plugin\views\field;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NcsLastUpdated.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NcsLastUpdated.php
index 89f25a1..d1857aa 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NcsLastUpdated.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NcsLastUpdated.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\filter\NcsLastUpdated.
+ * Definition of \Drupal\comment\Plugin\views\filter\NcsLastUpdated.
  */
 
 namespace Drupal\comment\Plugin\views\filter;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NodeComment.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NodeComment.php
index 05c95a4..8f18669 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NodeComment.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/NodeComment.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\filter\NodeComment.
+ * Definition of \Drupal\comment\Plugin\views\filter\NodeComment.
  */
 
 namespace Drupal\comment\Plugin\views\filter;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/UserUid.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/UserUid.php
index ab74b4d..dc2b319 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/UserUid.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/filter/UserUid.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\filter\UserUid.
+ * Definition of \Drupal\comment\Plugin\views\filter\UserUid.
  */
 
 namespace Drupal\comment\Plugin\views\filter;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/row/Rss.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/row/Rss.php
index a363bab..c46873e 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/row/Rss.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/row/Rss.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\row\Rss.
+ * Definition of \Drupal\comment\Plugin\views\row\Rss.
  */
 
 namespace Drupal\comment\Plugin\views\row;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastCommentName.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastCommentName.php
index f87203d..35f2aaf 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastCommentName.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastCommentName.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\sort\NcsLastCommentName.
+ * Definition of \Drupal\comment\Plugin\views\sort\NcsLastCommentName.
  */
 
 namespace Drupal\comment\Plugin\views\sort;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastUpdated.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastUpdated.php
index 7eae853..4896164 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastUpdated.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/NcsLastUpdated.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\sort\NcsLastUpdated.
+ * Definition of \Drupal\comment\Plugin\views\sort\NcsLastUpdated.
  */
 
 namespace Drupal\comment\Plugin\views\sort;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/Thread.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/Thread.php
index e030f8d..6d332cc 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/Thread.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/sort/Thread.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Plugin\views\sort\Thread.
+ * Definition of \Drupal\comment\Plugin\views\sort\Thread.
  */
 
 namespace Drupal\comment\Plugin\views\sort;
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php
index f48b917..399b7c1 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/wizard/Comment.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\node\Plugin\views\wizard\Comment.
+ * Definition of \Drupal\node\Plugin\views\wizard\Comment.
  */
 
 namespace Drupal\comment\Plugin\views\wizard;
@@ -65,7 +65,7 @@ class Comment extends WizardPluginBase {
   );
 
   /**
-   * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::rowStyleOptions().
+   * Overrides \Drupal\views\Plugin\views\wizard\WizardPluginBase::rowStyleOptions().
    */
   protected function rowStyleOptions() {
     $options = array();
@@ -111,7 +111,7 @@ protected function pageDisplayOptions(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::blockDisplayOptions().
+   * Overrides \Drupal\views\Plugin\views\wizard\WizardPluginBase::blockDisplayOptions().
    */
   protected function blockDisplayOptions(array $form, array &$form_state) {
     $display_options = parent::blockDisplayOptions($form, $form_state);
@@ -134,7 +134,7 @@ protected  function display_options_row(&$display_options, $row_plugin, $row_opt
   }
 
   /**
-   * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::defaultDisplayOptions().
+   * Overrides \Drupal\views\Plugin\views\wizard\WizardPluginBase::defaultDisplayOptions().
    */
   protected function defaultDisplayOptions() {
     $display_options = parent::defaultDisplayOptions();
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentActionsTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentActionsTest.php
index 94a1651..c0c0c3e 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentActionsTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentActionsTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentActionsTest.
+ * Definition of \Drupal\comment\Tests\CommentActionsTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php
index f4ef8cf..eb1e94c 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentAnonymousTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\comment\Tests\CommentAnonymousTest.
+ * Contains \Drupal\comment\Tests\CommentAnonymousTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentApprovalTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentApprovalTest.php
index 5c3f157..8c0087a 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentApprovalTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentApprovalTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentApprovalTest.
+ * Definition of \Drupal\comment\Tests\CommentApprovalTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentBlockTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentBlockTest.php
index 89f81b1..6a18050 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentBlockTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentBlockTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentBlockTest.
+ * Definition of \Drupal\comment\Tests\CommentBlockTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentCSSTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentCSSTest.php
index 8b07aec..7a59426 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentCSSTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentCSSTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\comment\Tests\CommentCSSTest.
+ * Contains \Drupal\comment\Tests\CommentCSSTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentContentRebuildTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentContentRebuildTest.php
index c467a09..2ffe7e5 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentContentRebuildTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentContentRebuildTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentContentRebuildTest.
+ * Definition of \Drupal\comment\Tests\CommentContentRebuildTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentFieldsTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentFieldsTest.php
index ecd464a..88a854b 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentFieldsTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentFieldsTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentFieldsTest.
+ * Definition of \Drupal\comment\Tests\CommentFieldsTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentInterfaceTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentInterfaceTest.php
index 8d7a472..1ce251f 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentInterfaceTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentInterfaceTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentInterfaceTest.
+ * Definition of \Drupal\comment\Tests\CommentInterfaceTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentLanguageTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentLanguageTest.php
index 47efe82..b787803 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentLanguageTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentLanguageTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentLanguageTest.
+ * Definition of \Drupal\comment\Tests\CommentLanguageTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentLinksTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentLinksTest.php
index a0f0cdc..d9c20bf 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentLinksTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentLinksTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\comment\Tests\CommentLinksTest.
+ * Contains \Drupal\comment\Tests\CommentLinksTest.
  */
 
 namespace Drupal\comment\Tests;
@@ -183,7 +183,7 @@ function setEnvironment(array $info) {
     user_role_change_permissions($rid, $perms);
 
     // Output verbose debugging information.
-    // @see Drupal\simpletest\TestBase::error()
+    // @see \Drupal\simpletest\TestBase::error()
     $t_form = array(
       COMMENT_FORM_BELOW => 'below',
       COMMENT_FORM_SEPARATE_PAGE => 'separate page',
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNewIndicatorTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentNewIndicatorTest.php
index e121432..5dbc145 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentNewIndicatorTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentNewIndicatorTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\comment\Tests\CommentNewIndicatorTest.
+ * Contains \Drupal\comment\Tests\CommentNewIndicatorTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeAccessTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeAccessTest.php
index 7910196..1fc6907 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeAccessTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeAccessTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentNodeAccessTest.
+ * Definition of \Drupal\comment\Tests\CommentNodeAccessTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeChangesTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeChangesTest.php
index 29d72d0..d863a87 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeChangesTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentNodeChangesTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentNodeChangesTest.
+ * Definition of \Drupal\comment\Tests\CommentNodeChangesTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentPagerTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentPagerTest.php
index 644001c..08aa4d4 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentPagerTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentPagerTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentPagerTest.
+ * Definition of \Drupal\comment\Tests\CommentPagerTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentPreviewTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentPreviewTest.php
index bf1cf6b..000715c 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentPreviewTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentPreviewTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentPreviewTest.
+ * Definition of \Drupal\comment\Tests\CommentPreviewTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentRssTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentRssTest.php
index f8af21b..5d8b96c 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentRssTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentRssTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentRssTest.
+ * Definition of \Drupal\comment\Tests\CommentRssTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentStatisticsTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentStatisticsTest.php
index 4578ade..61fdc25 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentStatisticsTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentStatisticsTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\comment\Tests\CommentStatisticsTest.
+ * Contains \Drupal\comment\Tests\CommentStatisticsTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php
index 22132c1..3e8045d 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentTestBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\comment\Tests\CommentTestBase.
+ * Contains \Drupal\comment\Tests\CommentTestBase.
  */
 
 namespace Drupal\comment\Tests;
@@ -26,21 +26,21 @@
   /**
    * An administrative user with permission to configure comment settings.
    *
-   * @var Drupal\user\User
+   * @var \Drupal\user\User
    */
   protected $admin_user;
 
   /**
    * A normal user with permission to post comments.
    *
-   * @var Drupal\user\User
+   * @var \Drupal\user\User
    */
   protected $web_user;
 
   /**
    * A test node to which comments will be posted.
    *
-   * @var Drupal\node\Node
+   * @var \Drupal\node\Node
    */
   protected $node;
 
@@ -155,7 +155,7 @@ function postComment($node, $comment, $subject = '', $contact = NULL) {
   /**
    * Checks current page for specified comment.
    *
-   * @param Drupal\comment\Comment $comment
+   * @param \Drupal\comment\Comment $comment
    *   The comment object.
    * @param boolean $reply
    *   Boolean indicating whether the comment is a reply to another comment.
@@ -181,7 +181,7 @@ function commentExists(Comment $comment = NULL, $reply = FALSE) {
   /**
    * Deletes a comment.
    *
-   * @param Drupal\comment\Comment $comment
+   * @param \Drupal\comment\Comment $comment
    *   Comment to delete.
    */
   function deleteComment(Comment $comment) {
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentThreadingTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentThreadingTest.php
index 3636f91..1106e5c 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentThreadingTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentThreadingTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentThreadingTest.
+ * Definition of \Drupal\comment\Tests\CommentThreadingTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentTokenReplaceTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentTokenReplaceTest.php
index 608a8a4..917d9e5 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentTokenReplaceTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentTokenReplaceTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentTokenReplaceTest.
+ * Definition of \Drupal\comment\Tests\CommentTokenReplaceTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentTranslationUITest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentTranslationUITest.php
index 49d6814..2b061ca 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentTranslationUITest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentTranslationUITest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentTranslationUITest.
+ * Definition of \Drupal\comment\Tests\CommentTranslationUITest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/CommentUninstallTest.php b/core/modules/comment/lib/Drupal/comment/Tests/CommentUninstallTest.php
index 48e749f..dc0db56 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/CommentUninstallTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/CommentUninstallTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\comment\Tests\CommentUninstallTest.
+ * Definition of \Drupal\comment\Tests\CommentUninstallTest.
  */
 
 namespace Drupal\comment\Tests;
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php b/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php
index ce5bc3e..a1d113f 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/Views/DefaultViewRecentComments.php
@@ -8,7 +8,7 @@
 namespace Drupal\comment\Tests\Views;
 
 use Drupal\entity\DatabaseStorageController;
-use  Drupal\views\Tests\ViewTestBase;
+use  \Drupal\views\Tests\ViewTestBase;
 
 class DefaultViewRecentComments extends ViewTestBase {
 
@@ -50,7 +50,7 @@ class DefaultViewRecentComments extends ViewTestBase {
   /**
    * Contains the node object used for comments of this test.
    *
-   * @var Drupal\node\Node
+   * @var \Drupal\node\Node
    */
   public $node;
 
diff --git a/core/modules/comment/lib/Drupal/comment/Tests/Views/WizardTest.php b/core/modules/comment/lib/Drupal/comment/Tests/Views/WizardTest.php
index de1487a..ee597bd 100644
--- a/core/modules/comment/lib/Drupal/comment/Tests/Views/WizardTest.php
+++ b/core/modules/comment/lib/Drupal/comment/Tests/Views/WizardTest.php
@@ -12,7 +12,7 @@
 /**
  * Tests the comment module integration into the wizard.
  *
- * @see Drupal\comment\Plugin\views\wizard\Comment
+ * @see \Drupal\comment\Plugin\views\wizard\Comment
  */
 class WizardTest extends WizardTestBase {
 
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigCRUDTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigCRUDTest.php
index d4c170c..a9c5984 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigCRUDTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigCRUDTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigCRUDTest.
+ * Definition of \Drupal\config\Tests\ConfigCRUDTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityListTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigEntityListTest.php
index 7917731..ce420e7 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityListTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigEntityListTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigEntityListTest.
+ * Definition of \Drupal\config\Tests\ConfigEntityListTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigEntityTest.php
index 09fd53b..2db193b 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigEntityTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigEntityTest.
+ * Definition of \Drupal\config\Tests\ConfigEntityTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityUnitTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigEntityUnitTest.php
index 8be1055..bcfa4da 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigEntityUnitTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigEntityUnitTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\config\Tests\ConfigEntityUnitTest.
+ * Contains \Drupal\config\Tests\ConfigEntityUnitTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigFileContentTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigFileContentTest.php
index f2e7965..21c360a 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigFileContentTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigFileContentTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigFileContentTest.
+ * Definition of \Drupal\config\Tests\ConfigFileContentTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php
index 6296ed5..8cb8e61 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigImportUITest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigImportUITest.
+ * Definition of \Drupal\config\Tests\ConfigImportUITest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigInstallTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigInstallTest.php
index 3d4093d..aedfd41 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigInstallTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigInstallTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigInstallTest.
+ * Definition of \Drupal\config\Tests\ConfigInstallTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigInstallWebTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigInstallWebTest.php
index ff48bf4..4e2ac4a 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigInstallWebTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigInstallWebTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigInstallTest.
+ * Definition of \Drupal\config\Tests\ConfigInstallTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigOverrideTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigOverrideTest.php
index e0748a7..4c41340 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigOverrideTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigOverrideTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigOverrideTest.
+ * Definition of \Drupal\config\Tests\ConfigOverrideTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/ConfigUpgradeTest.php b/core/modules/config/lib/Drupal/config/Tests/ConfigUpgradeTest.php
index f55921e..14e908f 100644
--- a/core/modules/config/lib/Drupal/config/Tests/ConfigUpgradeTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/ConfigUpgradeTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\ConfigUpgradeTest.
+ * Definition of \Drupal\config\Tests\ConfigUpgradeTest.
  */
 
 namespace Drupal\config\Tests;
diff --git a/core/modules/config/lib/Drupal/config/Tests/Storage/ConfigStorageTestBase.php b/core/modules/config/lib/Drupal/config/Tests/Storage/ConfigStorageTestBase.php
index a2b3448..948a866 100644
--- a/core/modules/config/lib/Drupal/config/Tests/Storage/ConfigStorageTestBase.php
+++ b/core/modules/config/lib/Drupal/config/Tests/Storage/ConfigStorageTestBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\Storage\ConfigStorageTestBase.
+ * Definition of \Drupal\config\Tests\Storage\ConfigStorageTestBase.
  */
 
 namespace Drupal\config\Tests\Storage;
diff --git a/core/modules/config/lib/Drupal/config/Tests/Storage/DatabaseStorageTest.php b/core/modules/config/lib/Drupal/config/Tests/Storage/DatabaseStorageTest.php
index 516bb9d..9ac38f8 100644
--- a/core/modules/config/lib/Drupal/config/Tests/Storage/DatabaseStorageTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/Storage/DatabaseStorageTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\Storage\DatabaseStorageTest.
+ * Definition of \Drupal\config\Tests\Storage\DatabaseStorageTest.
  */
 
 namespace Drupal\config\Tests\Storage;
diff --git a/core/modules/config/lib/Drupal/config/Tests/Storage/FileStorageTest.php b/core/modules/config/lib/Drupal/config/Tests/Storage/FileStorageTest.php
index d4d492a..95f408e 100644
--- a/core/modules/config/lib/Drupal/config/Tests/Storage/FileStorageTest.php
+++ b/core/modules/config/lib/Drupal/config/Tests/Storage/FileStorageTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config\Tests\Storage\FileStorageTest.
+ * Definition of \Drupal\config\Tests\Storage\FileStorageTest.
  */
 
 namespace Drupal\config\Tests\Storage;
diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestFormController.php b/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestFormController.php
index 119774b..24fe927 100644
--- a/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestFormController.php
+++ b/core/modules/config/tests/config_test/lib/Drupal/config_test/ConfigTestFormController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\config_test\ConfigTestFormController.
+ * Contains \Drupal\config_test\ConfigTestFormController.
  */
 
 namespace Drupal\config_test;
@@ -15,7 +15,7 @@
 class ConfigTestFormController extends EntityFormController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::form().
+   * Overrides \Drupal\Core\Entity\EntityFormController::form().
    */
   public function form(array $form, array &$form_state) {
     $form = parent::form($form, $form_state);
@@ -66,7 +66,7 @@ public function form(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::save().
+   * Overrides \Drupal\Core\Entity\EntityFormController::save().
    */
   public function save(array $form, array &$form_state) {
     $entity = $this->entity;
@@ -83,7 +83,7 @@ public function save(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::delete().
+   * Overrides \Drupal\Core\Entity\EntityFormController::delete().
    */
   public function delete(array $form, array &$form_state) {
     $entity = $this->entity;
diff --git a/core/modules/config/tests/config_test/lib/Drupal/config_test/Plugin/Core/Entity/ConfigTest.php b/core/modules/config/tests/config_test/lib/Drupal/config_test/Plugin/Core/Entity/ConfigTest.php
index dc76288..33a21cd 100644
--- a/core/modules/config/tests/config_test/lib/Drupal/config_test/Plugin/Core/Entity/ConfigTest.php
+++ b/core/modules/config/tests/config_test/lib/Drupal/config_test/Plugin/Core/Entity/ConfigTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\config_test\Plugin\Core\Entity\ConfigTest.
+ * Definition of \Drupal\config_test\Plugin\Core\Entity\ConfigTest.
  */
 
 namespace Drupal\config_test\Plugin\Core\Entity;
diff --git a/core/modules/contact/lib/Drupal/contact/CategoryFormController.php b/core/modules/contact/lib/Drupal/contact/CategoryFormController.php
index 5f2e78c..2fa9b73 100644
--- a/core/modules/contact/lib/Drupal/contact/CategoryFormController.php
+++ b/core/modules/contact/lib/Drupal/contact/CategoryFormController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contact\CategoryFormController.
+ * Definition of \Drupal\contact\CategoryFormController.
  */
 
 namespace Drupal\contact;
@@ -15,7 +15,7 @@
 class CategoryFormController extends EntityFormController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::form().
+   * Overrides \Drupal\Core\Entity\EntityFormController::form().
    */
   public function form(array $form, array &$form_state) {
     $form = parent::form($form, $form_state);
@@ -73,7 +73,7 @@ public function form(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::validate().
+   * Overrides \Drupal\Core\Entity\EntityFormController::validate().
    */
   public function validate(array $form, array &$form_state) {
     parent::validate($form, $form_state);
@@ -91,7 +91,7 @@ public function validate(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::save().
+   * Overrides \Drupal\Core\Entity\EntityFormController::save().
    */
   public function save(array $form, array &$form_state) {
     $category = $this->entity;
@@ -125,7 +125,7 @@ public function save(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::delete().
+   * Overrides \Drupal\Core\Entity\EntityFormController::delete().
    */
   public function delete(array $form, array &$form_state) {
     $form_state['redirect'] = 'admin/structure/contact/manage/' . $this->entity->id() . '/delete';
diff --git a/core/modules/contact/lib/Drupal/contact/CategoryListController.php b/core/modules/contact/lib/Drupal/contact/CategoryListController.php
index 820010f..bfe6c9e 100644
--- a/core/modules/contact/lib/Drupal/contact/CategoryListController.php
+++ b/core/modules/contact/lib/Drupal/contact/CategoryListController.php
@@ -1,7 +1,7 @@
 <?php
 
 /**
- * Definition of Drupal\contact\CategoryListController.
+ * Definition of \Drupal\contact\CategoryListController.
  */
 
 namespace Drupal\contact;
@@ -15,7 +15,7 @@
 class CategoryListController extends ConfigEntityListController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityListController::getOperations().
+   * Overrides \Drupal\Core\Entity\EntityListController::getOperations().
    */
   public function getOperations(EntityInterface $entity) {
     $operations = parent::getOperations($entity);
@@ -44,7 +44,7 @@ public function getOperations(EntityInterface $entity) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityListController::buildHeader().
+   * Overrides \Drupal\Core\Entity\EntityListController::buildHeader().
    */
   public function buildHeader() {
     $row['category'] = t('Category');
@@ -55,7 +55,7 @@ public function buildHeader() {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityListController::buildRow().
+   * Overrides \Drupal\Core\Entity\EntityListController::buildRow().
    */
   public function buildRow(EntityInterface $entity) {
     $row['category'] = check_plain($entity->label());
diff --git a/core/modules/contact/lib/Drupal/contact/CategoryStorageController.php b/core/modules/contact/lib/Drupal/contact/CategoryStorageController.php
index 90b74db..c935db4 100644
--- a/core/modules/contact/lib/Drupal/contact/CategoryStorageController.php
+++ b/core/modules/contact/lib/Drupal/contact/CategoryStorageController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\contact\CategoryStorageController.
+ * Contains \Drupal\contact\CategoryStorageController.
  */
 
 namespace Drupal\contact;
diff --git a/core/modules/contact/lib/Drupal/contact/MessageFormController.php b/core/modules/contact/lib/Drupal/contact/MessageFormController.php
index f64dbe0..a84fdc0 100644
--- a/core/modules/contact/lib/Drupal/contact/MessageFormController.php
+++ b/core/modules/contact/lib/Drupal/contact/MessageFormController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contact\MessageFormController.
+ * Definition of \Drupal\contact\MessageFormController.
  */
 
 namespace Drupal\contact;
@@ -17,7 +17,7 @@
 class MessageFormController extends EntityFormControllerNG {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::form().
+   * Overrides \Drupal\Core\Entity\EntityFormController::form().
    */
   public function form(array $form, array &$form_state) {
     global $user;
@@ -99,7 +99,7 @@ public function form(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::actions().
+   * Overrides \Drupal\Core\Entity\EntityFormController::actions().
    */
   public function actions(array $form, array &$form_state) {
     $elements = parent::actions($form, $form_state);
@@ -128,7 +128,7 @@ public function preview(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::save().
+   * Overrides \Drupal\Core\Entity\EntityFormController::save().
    */
   public function save(array $form, array &$form_state) {
     global $user;
diff --git a/core/modules/contact/lib/Drupal/contact/MessageRenderController.php b/core/modules/contact/lib/Drupal/contact/MessageRenderController.php
index f8aca5d..e6184d7 100644
--- a/core/modules/contact/lib/Drupal/contact/MessageRenderController.php
+++ b/core/modules/contact/lib/Drupal/contact/MessageRenderController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\contact\MessageRenderController.
+ * Contains \Drupal\contact\MessageRenderController.
  */
 
 namespace Drupal\contact;
@@ -16,7 +16,7 @@
 class MessageRenderController extends EntityRenderController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::buildContent().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::buildContent().
    */
   public function buildContent(array $entities, array $displays, $view_mode, $langcode = NULL) {
     parent::buildContent($entities, $displays, $view_mode, $langcode);
@@ -35,7 +35,7 @@ public function buildContent(array $entities, array $displays, $view_mode, $lang
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::view().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::view().
    */
   public function view(EntityInterface $entity, $view_mode = 'full', $langcode = NULL) {
     $build = parent::view($entity, $view_mode, $langcode);
diff --git a/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Category.php b/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Category.php
index 0b3323f..8dffa14 100644
--- a/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Category.php
+++ b/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Category.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contact\Plugin\Core\Entity\Category.
+ * Definition of \Drupal\contact\Plugin\Core\Entity\Category.
  */
 
 namespace Drupal\contact\Plugin\Core\Entity;
diff --git a/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Message.php b/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Message.php
index a7ae2b3..e1100d0 100644
--- a/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Message.php
+++ b/core/modules/contact/lib/Drupal/contact/Plugin/Core/Entity/Message.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\contact\Plugin\Core\Entity\Message.
+ * Contains \Drupal\contact\Plugin\Core\Entity\Message.
  */
 
 namespace Drupal\contact\Plugin\Core\Entity;
@@ -39,7 +39,7 @@
 class Message extends EntityNG implements MessageInterface {
 
   /**
-   * Overrides Drupal\Core\Entity\Entity::id().
+   * Overrides \Drupal\Core\Entity\Entity::id().
    */
   public function id() {
     return NULL;
diff --git a/core/modules/contact/lib/Drupal/contact/Tests/ContactAuthenticatedUserTest.php b/core/modules/contact/lib/Drupal/contact/Tests/ContactAuthenticatedUserTest.php
index 059923f..daa1ba0 100644
--- a/core/modules/contact/lib/Drupal/contact/Tests/ContactAuthenticatedUserTest.php
+++ b/core/modules/contact/lib/Drupal/contact/Tests/ContactAuthenticatedUserTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contact\ContactAuthenticatedUserTest.
+ * Definition of \Drupal\contact\ContactAuthenticatedUserTest.
  */
 
 namespace Drupal\contact\Tests;
diff --git a/core/modules/contact/lib/Drupal/contact/Tests/ContactPersonalTest.php b/core/modules/contact/lib/Drupal/contact/Tests/ContactPersonalTest.php
index e027b63..b13853c 100644
--- a/core/modules/contact/lib/Drupal/contact/Tests/ContactPersonalTest.php
+++ b/core/modules/contact/lib/Drupal/contact/Tests/ContactPersonalTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contact\Tests\ContactPersonalTest.
+ * Definition of \Drupal\contact\Tests\ContactPersonalTest.
  */
 
 namespace Drupal\contact\Tests;
diff --git a/core/modules/contact/lib/Drupal/contact/Tests/ContactSitewideTest.php b/core/modules/contact/lib/Drupal/contact/Tests/ContactSitewideTest.php
index a62d0a6..ac0ff6e 100644
--- a/core/modules/contact/lib/Drupal/contact/Tests/ContactSitewideTest.php
+++ b/core/modules/contact/lib/Drupal/contact/Tests/ContactSitewideTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contact\Tests\ContactSitewideTest.
+ * Definition of \Drupal\contact\Tests\ContactSitewideTest.
  */
 
 namespace Drupal\contact\Tests;
diff --git a/core/modules/contact/lib/Drupal/contact/Tests/ContactUpgradePathTest.php b/core/modules/contact/lib/Drupal/contact/Tests/ContactUpgradePathTest.php
index 4c61653..8d35bb8 100644
--- a/core/modules/contact/lib/Drupal/contact/Tests/ContactUpgradePathTest.php
+++ b/core/modules/contact/lib/Drupal/contact/Tests/ContactUpgradePathTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contact\Tests\ContactUpgradePathTest.
+ * Definition of \Drupal\contact\Tests\ContactUpgradePathTest.
  */
 
 namespace Drupal\contact\Tests;
diff --git a/core/modules/contact/tests/drupal-7.contact.database.php b/core/modules/contact/tests/drupal-7.contact.database.php
index ed8e5ba..fdda2e3 100644
--- a/core/modules/contact/tests/drupal-7.contact.database.php
+++ b/core/modules/contact/tests/drupal-7.contact.database.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Database additions for Drupal\contact\Tests\ContactUpgradePathTest.
+ * Database additions for \Drupal\contact\Tests\ContactUpgradePathTest.
  *
  * This dump only contains data for the contact module. The
  * drupal-7.filled.bare.php file is imported before this dump, so the two form
diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php
index 5e4ad79..aa17d7e 100644
--- a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php
+++ b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\content_translation\ContentTranslationController.
+ * Definition of \Drupal\content_translation\ContentTranslationController.
  */
 
 namespace Drupal\content_translation;
diff --git a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationControllerInterface.php b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationControllerInterface.php
index b28dd8d..dbfc702 100644
--- a/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationControllerInterface.php
+++ b/core/modules/content_translation/lib/Drupal/content_translation/ContentTranslationControllerInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\content_translation\ContentTranslationControllerInterface.
+ * Definition of \Drupal\content_translation\ContentTranslationControllerInterface.
  */
 
 namespace Drupal\content_translation;
@@ -38,9 +38,9 @@
  * Every entity type needs a translation controller to be translated. This can
  * be specified through the "controllers['translation']" key in the entity
  * info. If an entity type is enabled for translation and no translation
- * controller is defined, Drupal\content_translation\ContentTranslationController
+ * controller is defined, \Drupal\content_translation\ContentTranslationController
  * will be assumed. Every translation controller class must implement
- * Drupal\content_translation\ContentTranslationControllerInterface.
+ * \Drupal\content_translation\ContentTranslationControllerInterface.
  *
  * If the entity paths match the default patterns above and there is no need for
  * an entity-specific translation controller class, Content Translation will
diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ConfigTestTranslationUITest.php b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ConfigTestTranslationUITest.php
index 5765cd4..d06fdb1 100644
--- a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ConfigTestTranslationUITest.php
+++ b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ConfigTestTranslationUITest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\entity\Tests\ConfigTestTranslationUITest.
+ * Definition of \Drupal\entity\Tests\ConfigTestTranslationUITest.
  */
 
 namespace Drupal\content_translation\Tests;
diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTestTranslationUITest.php b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTestTranslationUITest.php
index ad32718..f699015 100644
--- a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTestTranslationUITest.php
+++ b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTestTranslationUITest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\entity\Tests\ContentTestTranslationUITest.
+ * Definition of \Drupal\entity\Tests\ContentTestTranslationUITest.
  */
 
 namespace Drupal\content_translation\Tests;
diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSettingsTest.php b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSettingsTest.php
index 182eb64..fd67d00 100644
--- a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSettingsTest.php
+++ b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationSettingsTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\content_translation\Tests\ContentTranslationSettingsTest.
+ * Contains \Drupal\content_translation\Tests\ContentTranslationSettingsTest.
  */
 
 namespace Drupal\content_translation\Tests;
diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationUITest.php b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationUITest.php
index 6ffad4f..09f4684 100644
--- a/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationUITest.php
+++ b/core/modules/content_translation/lib/Drupal/content_translation/Tests/ContentTranslationUITest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\entity\Tests\ContentTranslationUITest.
+ * Definition of \Drupal\entity\Tests\ContentTranslationUITest.
  */
 
 namespace Drupal\content_translation\Tests;
diff --git a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
index 7409dbb..749d9bc 100644
--- a/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
+++ b/core/modules/contextual/lib/Drupal/contextual/Plugin/views/field/ContextualLinks.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\contextual\Plugin\views\field\ContextualLinks.
+ * Definition of \Drupal\contextual\Plugin\views\field\ContextualLinks.
  */
 
 namespace Drupal\contextual\Plugin\views\field;
diff --git a/core/modules/datetime/lib/Drupal/datetime/Type/DateTimeItem.php b/core/modules/datetime/lib/Drupal/datetime/Type/DateTimeItem.php
index 57954b8..b698b8f 100644
--- a/core/modules/datetime/lib/Drupal/datetime/Type/DateTimeItem.php
+++ b/core/modules/datetime/lib/Drupal/datetime/Type/DateTimeItem.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\datetime\Type\DateTimeItem.
+ * Contains \Drupal\datetime\Type\DateTimeItem.
  */
 
 namespace Drupal\datetime\Type;
diff --git a/core/modules/edit/lib/Drupal/edit/Ajax/BaseCommand.php b/core/modules/edit/lib/Drupal/edit/Ajax/BaseCommand.php
index 3a07b7f..b5ccb1f 100644
--- a/core/modules/edit/lib/Drupal/edit/Ajax/BaseCommand.php
+++ b/core/modules/edit/lib/Drupal/edit/Ajax/BaseCommand.php
@@ -40,7 +40,7 @@ public function __construct($command, $data) {
   }
 
   /**
-   * Implements Drupal\Core\Ajax\CommandInterface:render().
+   * Implements \Drupal\Core\Ajax\CommandInterface:render().
    */
   public function render() {
     return array(
diff --git a/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php b/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php
index 710b991..25fa977 100644
--- a/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php
+++ b/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php
@@ -54,14 +54,14 @@ class Editor extends ConfigEntityBase implements EditorInterface {
   public $settings = array();
 
   /**
-   * Overrides Drupal\Core\Entity\Entity::id().
+   * Overrides \Drupal\Core\Entity\Entity::id().
    */
   public function id() {
     return $this->format;
   }
 
   /**
-   * Overrides Drupal\Core\Entity\Entity::label().
+   * Overrides \Drupal\Core\Entity\Entity::label().
    */
   public function label($langcode = NULL) {
     $format = filter_format_load($this->format);
@@ -69,7 +69,7 @@ public function label($langcode = NULL) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\Entity::__construct()
+   * Overrides \Drupal\Core\Entity\Entity::__construct()
    */
   public function __construct(array $values, $entity_type) {
     parent::__construct($values, $entity_type);
diff --git a/core/modules/email/lib/Drupal/email/Plugin/field/formatter/MailToFormatter.php b/core/modules/email/lib/Drupal/email/Plugin/field/formatter/MailToFormatter.php
index 33e5920..d040a73 100644
--- a/core/modules/email/lib/Drupal/email/Plugin/field/formatter/MailToFormatter.php
+++ b/core/modules/email/lib/Drupal/email/Plugin/field/formatter/MailToFormatter.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\email\Plugin\field\formatter\MailToFormatter.
+ * Definition of \Drupal\email\Plugin\field\formatter\MailToFormatter.
  */
 
 namespace Drupal\email\Plugin\field\formatter;
@@ -27,7 +27,7 @@
 class MailToFormatter extends FormatterBase {
 
   /**
-   * Implements Drupal\field\Plugin\Type\Formatter\FormatterInterface::viewElements().
+   * Implements \Drupal\field\Plugin\Type\Formatter\FormatterInterface::viewElements().
    */
   public function viewElements(EntityInterface $entity, $langcode, array $items) {
     $elements = array();
diff --git a/core/modules/email/lib/Drupal/email/Plugin/field/widget/EmailDefaultWidget.php b/core/modules/email/lib/Drupal/email/Plugin/field/widget/EmailDefaultWidget.php
index 0e51452..0ac07e0 100644
--- a/core/modules/email/lib/Drupal/email/Plugin/field/widget/EmailDefaultWidget.php
+++ b/core/modules/email/lib/Drupal/email/Plugin/field/widget/EmailDefaultWidget.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\email\Plugin\field\widget\EmailDefaultWidget.
+ * Definition of \Drupal\email\Plugin\field\widget\EmailDefaultWidget.
  */
 
 namespace Drupal\email\Plugin\field\widget;
@@ -29,7 +29,7 @@
 class EmailDefaultWidget extends WidgetBase {
 
   /**
-   * Implements Drupal\field\Plugin\Type\Widget\WidgetInterface::settingsForm().
+   * Implements \Drupal\field\Plugin\Type\Widget\WidgetInterface::settingsForm().
    */
   public function settingsForm(array $form, array &$form_state) {
     $element['placeholder'] = array(
@@ -59,7 +59,7 @@ public function settingsSummary() {
   }
 
   /**
-   * Implements Drupal\field\Plugin\Type\Widget\WidgetInterface::formElement().
+   * Implements \Drupal\field\Plugin\Type\Widget\WidgetInterface::formElement().
    */
   public function formElement(array $items, $delta, array $element, $langcode, array &$form, array &$form_state) {
     $element['value'] = $element + array(
diff --git a/core/modules/email/lib/Drupal/email/Tests/EmailFieldTest.php b/core/modules/email/lib/Drupal/email/Tests/EmailFieldTest.php
index 2d76d76..257f442 100644
--- a/core/modules/email/lib/Drupal/email/Tests/EmailFieldTest.php
+++ b/core/modules/email/lib/Drupal/email/Tests/EmailFieldTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\email\Tests\EmailFieldTest.
+ * Definition of \Drupal\email\Tests\EmailFieldTest.
  */
 
 namespace Drupal\email\Tests;
diff --git a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionInterface.php b/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionInterface.php
index 069a2cb..87debe8 100644
--- a/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionInterface.php
+++ b/core/modules/entity_reference/lib/Drupal/entity_reference/Plugin/Type/Selection/SelectionInterface.php
@@ -15,7 +15,7 @@
  * This interface details the methods that most plugin implementations will want
  * to override. See \Drupal\field\Plugin\Type\Selection\SelectionBaseInterface
  * for base wrapping methods that should most likely be inherited directly from
- * Drupal\entity_reference\Plugin\Type\Selection\SelectionBase.
+ * \Drupal\entity_reference\Plugin\Type\Selection\SelectionBase.
  */
 interface SelectionInterface {
 
diff --git a/core/modules/field/field.api.php b/core/modules/field/field.api.php
index 02fd704..fcbebbd 100644
--- a/core/modules/field/field.api.php
+++ b/core/modules/field/field.api.php
@@ -156,10 +156,10 @@ function hook_field_info_alter(&$info) {
  * which widget to use.
  *
  * Widgets are Plugins managed by the
- * Drupal\field\Plugin\Type\Widget\WidgetPluginManager class. A widget is
+ * \Drupal\field\Plugin\Type\Widget\WidgetPluginManager class. A widget is
  * implemented by providing a class that implements
- * Drupal\field\Plugin\Type\Widget\WidgetInterface (in most cases, by
- * subclassing Drupal\field\Plugin\Type\Widget\WidgetBase), and provides the
+ * \Drupal\field\Plugin\Type\Widget\WidgetInterface (in most cases, by
+ * subclassing \Drupal\field\Plugin\Type\Widget\WidgetBase), and provides the
  * proper annotation block.
  *
  * Widgets are @link forms_api_reference.html Form API @endlink
@@ -262,10 +262,10 @@ function hook_field_widget_WIDGET_TYPE_form_alter(&$element, &$form_state, $cont
  * choose which formatter to use.
  *
  * Formatters are Plugins managed by the
- * Drupal\field\Plugin\Type\Formatter\FormatterPluginManager class. A formatter
+ * \Drupal\field\Plugin\Type\Formatter\FormatterPluginManager class. A formatter
  * is implemented by providing a class that implements
- * Drupal\field\Plugin\Type\Formatter\FormatterInterface (in most cases, by
- * subclassing Drupal\field\Plugin\Type\Formatter\FormatterBase), and provides
+ * \Drupal\field\Plugin\Type\Formatter\FormatterInterface (in most cases, by
+ * subclassing \Drupal\field\Plugin\Type\Formatter\FormatterBase), and provides
  * the proper annotation block.
  *
  * @see field
@@ -847,18 +847,18 @@ function hook_field_storage_delete_revision(\Drupal\Core\Entity\EntityInterface
 }
 
 /**
- * Execute a Drupal\Core\Entity\EntityFieldQuery.
+ * Execute a \Drupal\Core\Entity\EntityFieldQuery.
  *
  * This hook is called to find the entities having certain entity and field
  * conditions and sort them in the given field order. If the field storage
  * engine also handles property sorts and orders, it should unset those
  * properties in the called object to signal that those have been handled.
  *
- * @param Drupal\Core\Entity\EntityFieldQuery $query
+ * @param \Drupal\Core\Entity\EntityFieldQuery $query
  *   An EntityFieldQuery.
  *
  * @return
- *   See Drupal\Core\Entity\EntityFieldQuery::execute() for the return values.
+ *   See \Drupal\Core\Entity\EntityFieldQuery::execute() for the return values.
  */
 function hook_field_storage_query($query) {
   $groups = array();
@@ -1236,7 +1236,7 @@ function hook_field_info_max_weight($entity_type, $bundle, $context, $context_mo
  * that cannot be updated.
  *
  * To forbid the update from occurring, throw a
- * Drupal\field\FieldUpdateForbiddenException.
+ * \Drupal\field\FieldUpdateForbiddenException.
  *
  * @param $field
  *   The field as it will be post-update.
diff --git a/core/modules/field/lib/Drupal/field/FieldException.php b/core/modules/field/lib/Drupal/field/FieldException.php
index b653109..b65bc2a 100644
--- a/core/modules/field/lib/Drupal/field/FieldException.php
+++ b/core/modules/field/lib/Drupal/field/FieldException.php
@@ -2,7 +2,7 @@
 
 /*
  * @file
- * Definition of Drupal\field\FieldExeption.
+ * Definition of \Drupal\field\FieldExeption.
  */
 
 namespace Drupal\field;
diff --git a/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsBase.php b/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsBase.php
index 06f72e9..9261d46 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsBase.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\PluginSettingsBase.
+ * Definition of \Drupal\field\Plugin\PluginSettingsBase.
  */
 
 namespace Drupal\field\Plugin;
@@ -32,7 +32,7 @@
   protected $defaultSettingsMerged = FALSE;
 
   /**
-   * Implements Drupal\field\Plugin\PluginSettingsInterface::getSettings().
+   * Implements \Drupal\field\Plugin\PluginSettingsInterface::getSettings().
    */
   public function getSettings() {
     // Merge defaults before returning the array.
@@ -43,7 +43,7 @@ public function getSettings() {
   }
 
   /**
-   * Implements Drupal\field\Plugin\PluginSettingsInterface::getSetting().
+   * Implements \Drupal\field\Plugin\PluginSettingsInterface::getSetting().
    */
   public function getSetting($key) {
     // Merge defaults if we have no value for the key.
@@ -62,7 +62,7 @@ protected function mergeDefaults() {
   }
 
   /**
-   * Implements Drupal\field\Plugin\PluginSettingsInterface::getDefaultSettings().
+   * Implements \Drupal\field\Plugin\PluginSettingsInterface::getDefaultSettings().
    */
   public function getDefaultSettings() {
     $definition = $this->getPluginDefinition();
@@ -70,7 +70,7 @@ public function getDefaultSettings() {
   }
 
   /**
-   * Implements Drupal\field\Plugin\PluginSettingsInterface::setSettings().
+   * Implements \Drupal\field\Plugin\PluginSettingsInterface::setSettings().
    */
   public function setSettings(array $settings) {
     $this->settings = $settings;
@@ -79,7 +79,7 @@ public function setSettings(array $settings) {
   }
 
   /**
-   * Implements Drupal\field\Plugin\PluginSettingsInterface::setSetting().
+   * Implements \Drupal\field\Plugin\PluginSettingsInterface::setSetting().
    */
   public function setSetting($key, $value) {
     $this->settings[$key] = $value;
diff --git a/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsInterface.php b/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsInterface.php
index 955e88d..b1c20fe 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsInterface.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/PluginSettingsInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\PluginSettingsInterface.
+ * Definition of \Drupal\field\Plugin\PluginSettingsInterface.
  */
 
 namespace Drupal\field\Plugin;
@@ -48,7 +48,7 @@ public function getDefaultSettings();
    *   The array of settings, keyed by setting names. Missing settings will be
    *   assigned their default values.
    *
-   * @return Drupal\field\Plugin\PluginSettingsInterface
+   * @return \Drupal\field\Plugin\PluginSettingsInterface
    *   The plugin itself.
    */
   public function setSettings(array $settings);
@@ -61,7 +61,7 @@ public function setSettings(array $settings);
    * @param mixed $value
    *   The setting value.
    *
-   * @return Drupal\field\Plugin\PluginSettingsInterface
+   * @return \Drupal\field\Plugin\PluginSettingsInterface
    *   The plugin itself.
    */
   public function setSetting($key, $value);
diff --git a/core/modules/field/lib/Drupal/field/Plugin/Type/FieldType/LegacyFieldTypeDiscoveryDecorator.php b/core/modules/field/lib/Drupal/field/Plugin/Type/FieldType/LegacyFieldTypeDiscoveryDecorator.php
index 9aa6ab7..6993585 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/Type/FieldType/LegacyFieldTypeDiscoveryDecorator.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/Type/FieldType/LegacyFieldTypeDiscoveryDecorator.php
@@ -14,7 +14,7 @@
  * Custom decorator to add legacy field types.
  *
  * Legacy field types are discovered through the old hook_field_info() hook,
- * and handled by the Drupal\field\Plugin\field\field_type\LegacyConfigFieldItem class.
+ * and handled by the \Drupal\field\Plugin\field\field_type\LegacyConfigFieldItem class.
  *
  * @todo Remove once all core field types have been converted (see
  * http://drupal.org/node/2014671).
diff --git a/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterInterface.php b/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterInterface.php
index dda43b0..10010c7 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterInterface.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterInterface.php
@@ -74,7 +74,7 @@ public function prepareView(array $entities, $langcode, array &$items);
   /**
    * Builds a renderable array for one field on one entity instance.
    *
-   * @param Drupal\Core\Entity\EntityInterface $entity
+   * @param \Drupal\Core\Entity\EntityInterface $entity
    *   The entity being displayed.
    * @param string $langcode
    *   The language associated with $items.
@@ -89,7 +89,7 @@ public function view(EntityInterface $entity, $langcode, array $items);
   /**
    * Builds a renderable array for a field value.
    *
-   * @param Drupal\Core\Entity\EntityInterface $entity
+   * @param \Drupal\Core\Entity\EntityInterface $entity
    *   The entity being displayed.
    * @param string $langcode
    *   The language associated with $items.
diff --git a/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterPluginManager.php b/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterPluginManager.php
index 39deee9..3d83118 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterPluginManager.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/Type/Formatter/FormatterPluginManager.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\Type\Formatter\FormatterPluginManager..
+ * Definition of \Drupal\field\Plugin\Type\Formatter\FormatterPluginManager..
  */
 
 namespace Drupal\field\Plugin\Type\Formatter;
diff --git a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBase.php b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBase.php
index 654cbbe..f57c3f7 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBase.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBase.php
@@ -386,7 +386,7 @@ public function flagErrors(EntityInterface $entity, $langcode, array $items, arr
   }
 
   /**
-   * Implements Drupal\field\Plugin\Type\Widget\WidgetInterface::settingsForm().
+   * Implements \Drupal\field\Plugin\Type\Widget\WidgetInterface::settingsForm().
    */
   public function settingsForm(array $form, array &$form_state) {
     return array();
@@ -400,14 +400,14 @@ public function settingsSummary() {
   }
 
   /**
-   * Implements Drupal\field\Plugin\Type\Widget\WidgetInterface::errorElement().
+   * Implements \Drupal\field\Plugin\Type\Widget\WidgetInterface::errorElement().
    */
   public function errorElement(array $element, ConstraintViolationInterface $error, array $form, array &$form_state) {
     return $element;
   }
 
   /**
-   * Implements Drupal\field\Plugin\Type\Widget\WidgetInterface::massageFormValues()
+   * Implements \Drupal\field\Plugin\Type\Widget\WidgetInterface::massageFormValues()
    */
   public function massageFormValues(array $values, array $form, array &$form_state) {
     return $values;
diff --git a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBaseInterface.php b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBaseInterface.php
index ae107c9..f8f2d58 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBaseInterface.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetBaseInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\Type\Widget\WidgetBaseInterface.
+ * Definition of \Drupal\field\Plugin\Type\Widget\WidgetBaseInterface.
  */
 
 namespace Drupal\field\Plugin\Type\Widget;
@@ -14,8 +14,8 @@
  * Base interface definition for "Field widget" plugins.
  *
  * This interface details base wrapping methods that most widget implementations
- * will want to directly inherit from Drupal\field\Plugin\Type\Widget\WidgetBase.
- * See Drupal\field\Plugin\Type\Widget\WidgetInterface for methods that will more
+ * will want to directly inherit from \Drupal\field\Plugin\Type\Widget\WidgetBase.
+ * See \Drupal\field\Plugin\Type\Widget\WidgetInterface for methods that will more
  * likely be overriden.
  */
 interface WidgetBaseInterface extends PluginSettingsInterface {
@@ -27,7 +27,7 @@
    * TRUE), the 'default value', if any, is pre-populated. Also allows other
    * modules to alter the form element by implementing their own hooks.
    *
-   * @param Drupal\Core\Entity\EntityInterface $entity
+   * @param \Drupal\Core\Entity\EntityInterface $entity
    *   The entity for which the widget is being built.
    * @param string $langcode
    *   The language associated with the field.
@@ -50,7 +50,7 @@ public function form(EntityInterface $entity, $langcode, array $items, array &$f
   /**
    * Extracts field values from submitted form values.
    *
-   * @param Drupal\Core\Entity\EntityInterface $entity
+   * @param \Drupal\Core\Entity\EntityInterface $entity
    *   The entity for which the widget is being submitted.
    * @param string $langcode
    *   The language associated to $items.
@@ -68,7 +68,7 @@ public function extractFormValues(EntityInterface $entity, $langcode, array &$it
   /**
    * Reports field-level validation errors against actual form elements.
    *
-   * @param Drupal\Core\Entity\EntityInterface $entity
+   * @param \Drupal\Core\Entity\EntityInterface $entity
    *   The entity for which the widget is being submitted.
    * @param string $langcode
    *   The language associated to $items.
diff --git a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetInterface.php b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetInterface.php
index fbc939c..23ed943 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetInterface.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\Type\Widget\WidgetInterface.
+ * Definition of \Drupal\field\Plugin\Type\Widget\WidgetInterface.
  */
 
 namespace Drupal\field\Plugin\Type\Widget;
@@ -15,9 +15,9 @@
  * Interface definition for field widget plugins.
  *
  * This interface details the methods that most plugin implementations will want
- * to override. See Drupal\field\Plugin\Type\Widget\WidgetBaseInterface for base
+ * to override. See \Drupal\field\Plugin\Type\Widget\WidgetBaseInterface for base
  * wrapping methods that should most likely be inherited directly from
- * Drupal\field\Plugin\Type\Widget\WidgetBase..
+ * \Drupal\field\Plugin\Type\Widget\WidgetBase..
  */
 interface WidgetInterface extends WidgetBaseInterface {
 
diff --git a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetPluginManager.php b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetPluginManager.php
index b8213ca..30be9b1 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetPluginManager.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/Type/Widget/WidgetPluginManager.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\Type\Widget\WidgetPluginManager.
+ * Definition of \Drupal\field\Plugin\Type\Widget\WidgetPluginManager.
  */
 
 namespace Drupal\field\Plugin\Type\Widget;
@@ -26,7 +26,7 @@ class WidgetPluginManager extends PluginManagerBase {
   protected $widgetOptions;
 
   /**
-   * Overrides Drupal\Component\Plugin\PluginManagerBase:$defaults.
+   * Overrides \Drupal\Component\Plugin\PluginManagerBase:$defaults.
    */
   protected $defaults = array(
     'field_types' => array(),
diff --git a/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigField.php b/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigField.php
index ca37842..4faef7e 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigField.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigField.php
@@ -19,7 +19,7 @@
  * callbacks.
  *
  * This class is not discovered by the annotations reader, but referenced by
- * the Drupal\field\Plugin\Discovery\LegacyDiscoveryDecorator.
+ * the \Drupal\field\Plugin\Discovery\LegacyDiscoveryDecorator.
  *
  * @todo Remove once all core field types have been converted (see
  * http://drupal.org/node/2014671).
diff --git a/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigFieldItem.php b/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigFieldItem.php
index 0f122b6..b5b9dc3 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigFieldItem.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/field/field_type/LegacyConfigFieldItem.php
@@ -18,7 +18,7 @@
  * old-style hook_field_*() callbacks.
  *
  * This class is not discovered by the annotations reader, but referenced by
- * the Drupal\field\Plugin\Discovery\LegacyDiscoveryDecorator.
+ * the \Drupal\field\Plugin\Discovery\LegacyDiscoveryDecorator.
  *
  * @todo Remove once all core field types have been converted (see
  * http://drupal.org/node/2014671).
diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/argument/ListString.php b/core/modules/field/lib/Drupal/field/Plugin/views/argument/ListString.php
index 0c34d1b..a00a356 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/views/argument/ListString.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/views/argument/ListString.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\views\argument\ListString.
+ * Definition of \Drupal\field\Plugin\views\argument\ListString.
  */
 
 namespace Drupal\field\Plugin\views\argument;
diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php b/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php
index 0ae63b7..62804a7 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/views/field/Field.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\views\field\Field.
+ * Definition of \Drupal\field\Plugin\views\field\Field.
  */
 
 namespace Drupal\field\Plugin\views\field;
diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/filter/FieldList.php b/core/modules/field/lib/Drupal/field/Plugin/views/filter/FieldList.php
index cfd2f6c..15a9e10 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/views/filter/FieldList.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/views/filter/FieldList.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\views\filter\FieldList.
+ * Definition of \Drupal\field\Plugin\views\filter\FieldList.
  */
 
 namespace Drupal\field\Plugin\views\filter;
diff --git a/core/modules/field/lib/Drupal/field/Plugin/views/relationship/EntityReverse.php b/core/modules/field/lib/Drupal/field/Plugin/views/relationship/EntityReverse.php
index 481105f..0bb342a 100644
--- a/core/modules/field/lib/Drupal/field/Plugin/views/relationship/EntityReverse.php
+++ b/core/modules/field/lib/Drupal/field/Plugin/views/relationship/EntityReverse.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Plugin\views\relationship\EntityReverse.
+ * Definition of \Drupal\field\Plugin\views\relationship\EntityReverse.
  */
 
 namespace Drupal\field\Plugin\views\relationship;
diff --git a/core/modules/field/lib/Drupal/field/Tests/ActiveTest.php b/core/modules/field/lib/Drupal/field/Tests/ActiveTest.php
index c74d426..5364464 100644
--- a/core/modules/field/lib/Drupal/field/Tests/ActiveTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/ActiveTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\ActiveTest.
+ * Definition of \Drupal\field\Tests\ActiveTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/BulkDeleteTest.php b/core/modules/field/lib/Drupal/field/Tests/BulkDeleteTest.php
index 9637826..d0bb9d7 100644
--- a/core/modules/field/lib/Drupal/field/Tests/BulkDeleteTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/BulkDeleteTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\BulkDeleteTest.
+ * Definition of \Drupal\field\Tests\BulkDeleteTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/CrudTest.php b/core/modules/field/lib/Drupal/field/Tests/CrudTest.php
index b7b7d58..c80e907 100644
--- a/core/modules/field/lib/Drupal/field/Tests/CrudTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/CrudTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\CrudTest.
+ * Definition of \Drupal\field\Tests\CrudTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/DisplayApiTest.php b/core/modules/field/lib/Drupal/field/Tests/DisplayApiTest.php
index 70195d3..3623570 100644
--- a/core/modules/field/lib/Drupal/field/Tests/DisplayApiTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/DisplayApiTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\DisplayApiTest.
+ * Definition of \Drupal\field\Tests\DisplayApiTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldAccessTest.php b/core/modules/field/lib/Drupal/field/Tests/FieldAccessTest.php
index 58fb767..ae9c614 100644
--- a/core/modules/field/lib/Drupal/field/Tests/FieldAccessTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/FieldAccessTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\FieldAccessTest.
+ * Definition of \Drupal\field\Tests\FieldAccessTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldAttachOtherTest.php b/core/modules/field/lib/Drupal/field/Tests/FieldAttachOtherTest.php
index 4739d5f..618f1ef 100644
--- a/core/modules/field/lib/Drupal/field/Tests/FieldAttachOtherTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/FieldAttachOtherTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\FieldAttachOtherTest.
+ * Definition of \Drupal\field\Tests\FieldAttachOtherTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldAttachStorageTest.php b/core/modules/field/lib/Drupal/field/Tests/FieldAttachStorageTest.php
index e5f28d0..fd4b40f 100644
--- a/core/modules/field/lib/Drupal/field/Tests/FieldAttachStorageTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/FieldAttachStorageTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\FieldAttachStorageTest.
+ * Definition of \Drupal\field\Tests\FieldAttachStorageTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/FieldTestBase.php b/core/modules/field/lib/Drupal/field/Tests/FieldTestBase.php
index 949a108..f8cdb96 100644
--- a/core/modules/field/lib/Drupal/field/Tests/FieldTestBase.php
+++ b/core/modules/field/lib/Drupal/field/Tests/FieldTestBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\FieldTestBase.
+ * Definition of \Drupal\field\Tests\FieldTestBase.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/FormTest.php b/core/modules/field/lib/Drupal/field/Tests/FormTest.php
index b7c600e..406e0c6 100644
--- a/core/modules/field/lib/Drupal/field/Tests/FormTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/FormTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\FormTest.
+ * Definition of \Drupal\field\Tests\FormTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/TranslationTest.php b/core/modules/field/lib/Drupal/field/Tests/TranslationTest.php
index 91a33d0..f6f6bf1 100644
--- a/core/modules/field/lib/Drupal/field/Tests/TranslationTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/TranslationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\TranslationTest.
+ * Definition of \Drupal\field\Tests\TranslationTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/lib/Drupal/field/Tests/TranslationWebTest.php b/core/modules/field/lib/Drupal/field/Tests/TranslationWebTest.php
index 0893f43..c968f5b 100644
--- a/core/modules/field/lib/Drupal/field/Tests/TranslationWebTest.php
+++ b/core/modules/field/lib/Drupal/field/Tests/TranslationWebTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field\Tests\TranslationWebTest.
+ * Definition of \Drupal\field\Tests\TranslationWebTest.
  */
 
 namespace Drupal\field\Tests;
diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidget.php b/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidget.php
index c6e850c..550fa7e 100644
--- a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidget.php
+++ b/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidget.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field_test\Plugin\field\widget\TestFieldWidget.
+ * Definition of \Drupal\field_test\Plugin\field\widget\TestFieldWidget.
  */
 
 namespace Drupal\field_test\Plugin\field\widget;
diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetMultiple.php b/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetMultiple.php
index 1fb1f38..7461ad3 100644
--- a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetMultiple.php
+++ b/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetMultiple.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field_test\Plugin\field\widget\TestFieldWidgetMultiple.
+ * Definition of \Drupal\field_test\Plugin\field\widget\TestFieldWidgetMultiple.
  */
 
 namespace Drupal\field_test\Plugin\field\widget;
diff --git a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetNoDefault.php b/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetNoDefault.php
index 1d7f6e4..5818fc4 100644
--- a/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetNoDefault.php
+++ b/core/modules/field/tests/modules/field_test/lib/Drupal/field_test/Plugin/field/widget/TestFieldWidgetNoDefault.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field_test\Plugin\field\widget\TestFieldWidgetNoDefault.
+ * Definition of \Drupal\field_test\Plugin\field\widget\TestFieldWidgetNoDefault.
  */
 
 namespace Drupal\field_test\Plugin\field\widget;
diff --git a/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Tests/FieldSqlStorageTest.php b/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Tests/FieldSqlStorageTest.php
index 737daf3..a3c4ff3 100644
--- a/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Tests/FieldSqlStorageTest.php
+++ b/core/modules/field_sql_storage/lib/Drupal/field_sql_storage/Tests/FieldSqlStorageTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\field_sql_storage\FieldSqlStorageTest.
+ * Definition of \Drupal\field_sql_storage\FieldSqlStorageTest.
  */
 
 namespace Drupal\field_sql_storage\Tests;
diff --git a/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php b/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php
index 8e7e770..f97a21b 100644
--- a/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php
+++ b/core/modules/field_ui/lib/Drupal/field_ui/FieldOverview.php
@@ -260,7 +260,7 @@ public function validateForm(array &$form, array &$form_state) {
    * @param array $form_state
    *   A reference to a keyed array containing the current state of the form.
    *
-   * @see Drupal\field_ui\FieldOverview::validateForm()
+   * @see \Drupal\field_ui\FieldOverview::validateForm()
    */
   protected function validateAddNew(array $form, array &$form_state) {
     $field = $form_state['values']['fields']['_add_new_field'];
@@ -300,7 +300,7 @@ protected function validateAddNew(array $form, array &$form_state) {
    * @param array $form_state
    *   A reference to a keyed array containing the current state of the form.
    *
-   * @see Drupal\field_ui\FieldOverview::validate()
+   * @see \Drupal\field_ui\FieldOverview::validate()
    */
   protected function validateAddExisting(array $form, array &$form_state) {
     // The form element might be absent if no existing fields can be added to
diff --git a/core/modules/file/file.api.php b/core/modules/file/file.api.php
index c713214..025dbb9 100644
--- a/core/modules/file/file.api.php
+++ b/core/modules/file/file.api.php
@@ -57,7 +57,7 @@ function hook_file_load($files) {
  *
  * @see file_validate()
  */
-function hook_file_validate(Drupal\file\FileInterface $file) {
+function hook_file_validate(\Drupal\file\FileInterface $file) {
   $errors = array();
 
   if (!$file->getFilename()) {
@@ -80,7 +80,7 @@ function hook_file_validate(Drupal\file\FileInterface $file) {
  * @param \Drupal\file\FileInterface $file
  *   The file entity that is about to be created or updated.
  */
-function hook_file_presave(Drupal\file\FileInterface $file) {
+function hook_file_presave(\Drupal\file\FileInterface $file) {
   // Change the file timestamp to an hour prior.
   $file->timestamp -= 3600;
 }
@@ -95,7 +95,7 @@ function hook_file_presave(Drupal\file\FileInterface $file) {
  * @param \Drupal\file\FileInterface $file
  *   The file that has been added.
  */
-function hook_file_insert(Drupal\file\FileInterface $file) {
+function hook_file_insert(\Drupal\file\FileInterface $file) {
   // Add a message to the log, if the file is a jpg
   $validate = file_validate_extensions($file, 'jpg');
   if (empty($validate)) {
@@ -111,7 +111,7 @@ function hook_file_insert(Drupal\file\FileInterface $file) {
  * @param \Drupal\file\FileInterface $file
  *   The file that has just been updated.
  */
-function hook_file_update(Drupal\file\FileInterface $file) {
+function hook_file_update(\Drupal\file\FileInterface $file) {
   // Make sure that the file name starts with the owner's user name.
   if (strpos($file->getFilename(), $file->getOwner()->name) !== 0) {
     $old_filename = $file->getFilename();
@@ -132,7 +132,7 @@ function hook_file_update(Drupal\file\FileInterface $file) {
  *
  * @see file_copy()
  */
-function hook_file_copy(Drupal\file\FileInterface $file, Drupal\file\FileInterface $source) {
+function hook_file_copy(\Drupal\file\FileInterface $file, \Drupal\file\FileInterface $source) {
   // Make sure that the file name starts with the owner's user name.
   if (strpos($file->getFilename(), $file->getOwner()->name) !== 0) {
     $file->setFilename($file->getOwner()->name . '_' . $file->getFilename());
@@ -152,7 +152,7 @@ function hook_file_copy(Drupal\file\FileInterface $file, Drupal\file\FileInterfa
  *
  * @see file_move()
  */
-function hook_file_move(Drupal\file\FileInterface $file, Drupal\file\FileInterface $source) {
+function hook_file_move(\Drupal\file\FileInterface $file, \Drupal\file\FileInterface $source) {
   // Make sure that the file name starts with the owner's user name.
   if (strpos($file->getFilename(), $file->getOwner()->name) !== 0) {
     $file->setFilename($file->getOwner()->name . '_' . $file->getFilename());
@@ -172,10 +172,10 @@ function hook_file_move(Drupal\file\FileInterface $file, Drupal\file\FileInterfa
  *   The file that is about to be deleted.
  *
  * @see hook_file_delete()
- * @see Drupal\file\FileStorageController::delete()
+ * @see \Drupal\file\FileStorageController::delete()
  * @see upload_file_delete()
  */
-function hook_file_predelete(Drupal\file\FileInterface $file) {
+function hook_file_predelete(\Drupal\file\FileInterface $file) {
   // Delete all information associated with the file.
   db_delete('upload')->condition('fid', $file->id())->execute();
 }
@@ -190,9 +190,9 @@ function hook_file_predelete(Drupal\file\FileInterface $file) {
  *   The file that has just been deleted.
  *
  * @see hook_file_predelete()
- * @see Drupal\file\FileStorageController::delete()
+ * @see \Drupal\file\FileStorageController::delete()
  */
-function hook_file_delete(Drupal\file\FileInterface $file) {
+function hook_file_delete(\Drupal\file\FileInterface $file) {
   // Delete all information associated with the file.
   db_delete('upload')->condition('fid', $file->id())->execute();
 }
@@ -218,7 +218,7 @@ function hook_file_delete(Drupal\file\FileInterface $file) {
  *
  * @see hook_field_access().
  */
-function hook_file_download_access($field, Drupal\Core\Entity\EntityInterface $entity, Drupal\file\FileInterface $file) {
+function hook_file_download_access($field, \Drupal\Core\Entity\EntityInterface $entity, \Drupal\file\FileInterface $file) {
   if ($entity->entityType() == 'node') {
     return node_access('view', $entity);
   }
diff --git a/core/modules/file/lib/Drupal/file/FileStorageController.php b/core/modules/file/lib/Drupal/file/FileStorageController.php
index 10ba8d3..5f52583 100644
--- a/core/modules/file/lib/Drupal/file/FileStorageController.php
+++ b/core/modules/file/lib/Drupal/file/FileStorageController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\FileStorageController.
+ * Definition of \Drupal\file\FileStorageController.
  */
 
 namespace Drupal\file;
diff --git a/core/modules/file/lib/Drupal/file/FileUsage/DatabaseFileUsageBackend.php b/core/modules/file/lib/Drupal/file/FileUsage/DatabaseFileUsageBackend.php
index 80163c4..b4b6105 100644
--- a/core/modules/file/lib/Drupal/file/FileUsage/DatabaseFileUsageBackend.php
+++ b/core/modules/file/lib/Drupal/file/FileUsage/DatabaseFileUsageBackend.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\FileUsage\DatabaseFileUsageBackend.
+ * Definition of \Drupal\file\FileUsage\DatabaseFileUsageBackend.
  */
 
 namespace Drupal\file\FileUsage;
@@ -19,7 +19,7 @@ class DatabaseFileUsageBackend extends FileUsageBase {
   /**
    * The database connection used to store file usage information.
    *
-   * @var Drupal\Core\Database\Connection
+   * @var \Drupal\Core\Database\Connection
    */
   protected $connection;
 
@@ -33,7 +33,7 @@ class DatabaseFileUsageBackend extends FileUsageBase {
   /**
    * Construct the DatabaseFileUsageBackend.
    *
-   * @param Drupal\Core\Database\Connection $connection
+   * @param \Drupal\Core\Database\Connection $connection
    *   The database connection which will be used to store the file usage
    *   information.
    * @param string $table
@@ -46,7 +46,7 @@ public function __construct(Connection $connection, $table = 'file_usage') {
   }
 
   /**
-   * Implements Drupal\file\FileUsage\FileUsageInterface::add().
+   * Implements \Drupal\file\FileUsage\FileUsageInterface::add().
    */
   public function add(File $file, $module, $type, $id, $count = 1) {
     $this->connection->merge($this->tableName)
@@ -64,7 +64,7 @@ public function add(File $file, $module, $type, $id, $count = 1) {
   }
 
   /**
-   * Implements Drupal\file\FileUsage\FileUsageInterface::delete().
+   * Implements \Drupal\file\FileUsage\FileUsageInterface::delete().
    */
   public function delete(File $file, $module, $type = NULL, $id = NULL, $count = 1) {
     // Delete rows that have a exact or less value to prevent empty rows.
@@ -99,7 +99,7 @@ public function delete(File $file, $module, $type = NULL, $id = NULL, $count = 1
   }
 
   /**
-   * Implements Drupal\file\FileUsage\FileUsageInterface::listUsage().
+   * Implements \Drupal\file\FileUsage\FileUsageInterface::listUsage().
    */
   public function listUsage(File $file) {
     $result = $this->connection->select($this->tableName, 'f')
diff --git a/core/modules/file/lib/Drupal/file/FileUsage/FileUsageBase.php b/core/modules/file/lib/Drupal/file/FileUsage/FileUsageBase.php
index 1abe20d..e5d8de7 100644
--- a/core/modules/file/lib/Drupal/file/FileUsage/FileUsageBase.php
+++ b/core/modules/file/lib/Drupal/file/FileUsage/FileUsageBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\FileUsage\FileUsageBase.
+ * Definition of \Drupal\file\FileUsage\FileUsageBase.
  */
 
 namespace Drupal\file\FileUsage;
@@ -15,7 +15,7 @@
 abstract class FileUsageBase implements FileUsageInterface {
 
   /**
-   * Implements Drupal\file\FileUsage\FileUsageInterface::add().
+   * Implements \Drupal\file\FileUsage\FileUsageInterface::add().
    */
   public function add(File $file, $module, $type, $id, $count = 1) {
     // Make sure that a used file is permament.
@@ -26,7 +26,7 @@ public function add(File $file, $module, $type, $id, $count = 1) {
   }
 
   /**
-   * Implements Drupal\file\FileUsage\FileUsageInterface::delete().
+   * Implements \Drupal\file\FileUsage\FileUsageInterface::delete().
    */
   public function delete(File $file, $module, $type = NULL, $id = NULL, $count = 1) {
     // If there are no more remaining usages of this file, mark it as temporary,
diff --git a/core/modules/file/lib/Drupal/file/FileUsage/FileUsageInterface.php b/core/modules/file/lib/Drupal/file/FileUsage/FileUsageInterface.php
index d9a248d..d8d2526 100644
--- a/core/modules/file/lib/Drupal/file/FileUsage/FileUsageInterface.php
+++ b/core/modules/file/lib/Drupal/file/FileUsage/FileUsageInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\FileUsage\FileUsageInterface.
+ * Definition of \Drupal\file\FileUsage\FileUsageInterface.
  */
 
 namespace Drupal\file\FileUsage;
@@ -24,7 +24,7 @@
    * - The User module associates an image with a user, so $type would be 'user'
    *   and the $id would be the user's uid.
    *
-   * @param Drupal\file\File $file
+   * @param \Drupal\file\File $file
    *   A file entity.
    * @param string $module
    *   The name of the module using the file.
@@ -40,7 +40,7 @@ public function add(File $file, $module, $type, $id, $count = 1);
   /**
    * Removes a record to indicate that a module is no longer using a file.
    *
-   * @param Drupal\file\File $file
+   * @param \Drupal\file\File $file
    *   A file entity.
    * @param string $module
    *   The name of the module using the file.
@@ -62,7 +62,7 @@ public function delete(File $file, $module, $type = NULL, $id = NULL, $count = 1
   /**
    * Determines where a file is used.
    *
-   * @param Drupal\file\File $file
+   * @param \Drupal\file\File $file
    *   A file entity.
    *
    * @return array
diff --git a/core/modules/file/lib/Drupal/file/Plugin/Core/Entity/File.php b/core/modules/file/lib/Drupal/file/Plugin/Core/Entity/File.php
index 41c9ad1..8a743c2 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/Core/Entity/File.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/Core/Entity/File.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\Core\Entity\File.
+ * Definition of \Drupal\file\Plugin\Core\Entity\File.
  */
 
 namespace Drupal\file\Plugin\Core\Entity;
diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php b/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php
index 6906e01..be33c76 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/views/argument/Fid.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\views\argument\Fid.
+ * Definition of \Drupal\file\Plugin\views\argument\Fid.
  */
 
 namespace Drupal\file\Plugin\views\argument;
diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php b/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php
index 22376c3..0e86b8a 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/views/field/File.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\views\field\File.
+ * Definition of \Drupal\file\Plugin\views\field\File.
  */
 
 namespace Drupal\file\Plugin\views\field;
diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/FileMime.php b/core/modules/file/lib/Drupal/file/Plugin/views/field/FileMime.php
index a63c2d6..d9b22e0 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/views/field/FileMime.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/views/field/FileMime.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\views\field\FileMime.
+ * Definition of \Drupal\file\Plugin\views\field\FileMime.
  */
 
 namespace Drupal\file\Plugin\views\field;
diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/Status.php b/core/modules/file/lib/Drupal/file/Plugin/views/field/Status.php
index 719f4d6..d8c4bd1 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/views/field/Status.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/views/field/Status.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\views\field\Status.
+ * Definition of \Drupal\file\Plugin\views\field\Status.
  */
 
 namespace Drupal\file\Plugin\views\field;
diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/field/Uri.php b/core/modules/file/lib/Drupal/file/Plugin/views/field/Uri.php
index 4e5eb5f..20e2202 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/views/field/Uri.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/views/field/Uri.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\views\field\Uri.
+ * Definition of \Drupal\file\Plugin\views\field\Uri.
  */
 
 namespace Drupal\file\Plugin\views\field;
diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/filter/Status.php b/core/modules/file/lib/Drupal/file/Plugin/views/filter/Status.php
index 3da51b3..8af1b8f 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/views/filter/Status.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/views/filter/Status.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\views\filter\Status.
+ * Definition of \Drupal\file\Plugin\views\filter\Status.
  */
 
 namespace Drupal\file\Plugin\views\filter;
diff --git a/core/modules/file/lib/Drupal/file/Plugin/views/wizard/File.php b/core/modules/file/lib/Drupal/file/Plugin/views/wizard/File.php
index 3b19b56..bf9d90c 100644
--- a/core/modules/file/lib/Drupal/file/Plugin/views/wizard/File.php
+++ b/core/modules/file/lib/Drupal/file/Plugin/views/wizard/File.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Plugin\views\wizard\File.
+ * Definition of \Drupal\file\Plugin\views\wizard\File.
  */
 
 namespace Drupal\file\Plugin\views\wizard;
@@ -40,7 +40,7 @@ class File extends WizardPluginBase {
   );
 
   /**
-   * Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::defaultDisplayOptions().
+   * Overrides \Drupal\views\Plugin\views\wizard\WizardPluginBase::defaultDisplayOptions().
    */
   protected function defaultDisplayOptions() {
     $display_options = parent::defaultDisplayOptions();
diff --git a/core/modules/file/lib/Drupal/file/Tests/CopyTest.php b/core/modules/file/lib/Drupal/file/Tests/CopyTest.php
index 1c0dce6..f1526fc 100644
--- a/core/modules/file/lib/Drupal/file/Tests/CopyTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/CopyTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\CopyTest.
+ * Definition of \Drupal\file\Tests\CopyTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/DeleteTest.php b/core/modules/file/lib/Drupal/file/Tests/DeleteTest.php
index 9bd52bc..c023ca0 100644
--- a/core/modules/file/lib/Drupal/file/Tests/DeleteTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/DeleteTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\DeleteTest.
+ * Definition of \Drupal\file\Tests\DeleteTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/DownloadTest.php b/core/modules/file/lib/Drupal/file/Tests/DownloadTest.php
index 4fde332..6ca621d 100644
--- a/core/modules/file/lib/Drupal/file/Tests/DownloadTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/DownloadTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\DownloadTest.
+ * Definition of \Drupal\file\Tests\DownloadTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldDisplayTest.php b/core/modules/file/lib/Drupal/file/Tests/FileFieldDisplayTest.php
index 29ba4ef..0d195b1 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileFieldDisplayTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileFieldDisplayTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileFieldDisplayTest.
+ * Definition of \Drupal\file\Tests\FileFieldDisplayTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldPathTest.php b/core/modules/file/lib/Drupal/file/Tests/FileFieldPathTest.php
index f2c45b6..30c21bc 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileFieldPathTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileFieldPathTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileFieldPathTest.
+ * Definition of \Drupal\file\Tests\FileFieldPathTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldRSSContentTest.php b/core/modules/file/lib/Drupal/file/Tests/FileFieldRSSContentTest.php
index e241dea..96c323a 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileFieldRSSContentTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileFieldRSSContentTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileFieldDisplayTest.
+ * Definition of \Drupal\file\Tests\FileFieldDisplayTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldRevisionTest.php b/core/modules/file/lib/Drupal/file/Tests/FileFieldRevisionTest.php
index 84e23c3..c5652b1 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileFieldRevisionTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileFieldRevisionTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileFieldRevisionTest.
+ * Definition of \Drupal\file\Tests\FileFieldRevisionTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldTestBase.php b/core/modules/file/lib/Drupal/file/Tests/FileFieldTestBase.php
index 965c44d..1932aa3 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileFieldTestBase.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileFieldTestBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileFieldTestBase.
+ * Definition of \Drupal\file\Tests\FileFieldTestBase.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldValidateTest.php b/core/modules/file/lib/Drupal/file/Tests/FileFieldValidateTest.php
index a7cf1e5..84a35db 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileFieldValidateTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileFieldValidateTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileFieldValidateTest.
+ * Definition of \Drupal\file\Tests\FileFieldValidateTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileFieldWidgetTest.php b/core/modules/file/lib/Drupal/file/Tests/FileFieldWidgetTest.php
index 2267b1a..7788199 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileFieldWidgetTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileFieldWidgetTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileFieldWidgetTest.
+ * Definition of \Drupal\file\Tests\FileFieldWidgetTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileManagedFileElementTest.php b/core/modules/file/lib/Drupal/file/Tests/FileManagedFileElementTest.php
index bf57606..b7d626b 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileManagedFileElementTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileManagedFileElementTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileManagedFileElementTest.
+ * Definition of \Drupal\file\Tests\FileManagedFileElementTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileManagedTestBase.php b/core/modules/file/lib/Drupal/file/Tests/FileManagedTestBase.php
index 96305bd..e1d48a4 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileManagedTestBase.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileManagedTestBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileManagedTestBase.
+ * Definition of \Drupal\file\Tests\FileManagedTestBase.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FilePrivateTest.php b/core/modules/file/lib/Drupal/file/Tests/FilePrivateTest.php
index 1b8a82f..ecab642 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FilePrivateTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FilePrivateTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FilePrivateTest.
+ * Definition of \Drupal\file\Tests\FilePrivateTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/FileTokenReplaceTest.php b/core/modules/file/lib/Drupal/file/Tests/FileTokenReplaceTest.php
index c154332..e50076f 100644
--- a/core/modules/file/lib/Drupal/file/Tests/FileTokenReplaceTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/FileTokenReplaceTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\FileTokenReplaceTest.
+ * Definition of \Drupal\file\Tests\FileTokenReplaceTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/LoadTest.php b/core/modules/file/lib/Drupal/file/Tests/LoadTest.php
index 57013de..166bc7c 100644
--- a/core/modules/file/lib/Drupal/file/Tests/LoadTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/LoadTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\LoadTest.
+ * Definition of \Drupal\file\Tests\LoadTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/MoveTest.php b/core/modules/file/lib/Drupal/file/Tests/MoveTest.php
index 5037af0..a29120f 100644
--- a/core/modules/file/lib/Drupal/file/Tests/MoveTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/MoveTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\MoveTest.
+ * Definition of \Drupal\file\Tests\MoveTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/RemoteFileSaveUploadTest.php b/core/modules/file/lib/Drupal/file/Tests/RemoteFileSaveUploadTest.php
index fb5e68b..c1ff348 100644
--- a/core/modules/file/lib/Drupal/file/Tests/RemoteFileSaveUploadTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/RemoteFileSaveUploadTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\RemoteFileSaveUploadTest.
+ * Definition of \Drupal\file\Tests\RemoteFileSaveUploadTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/SaveDataTest.php b/core/modules/file/lib/Drupal/file/Tests/SaveDataTest.php
index 5579baf..957ad73 100644
--- a/core/modules/file/lib/Drupal/file/Tests/SaveDataTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/SaveDataTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\SaveDataTest.
+ * Definition of \Drupal\file\Tests\SaveDataTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/SaveTest.php b/core/modules/file/lib/Drupal/file/Tests/SaveTest.php
index 4761105..4326c02 100644
--- a/core/modules/file/lib/Drupal/file/Tests/SaveTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/SaveTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\SaveTest.
+ * Definition of \Drupal\file\Tests\SaveTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php b/core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php
index 84261cb..d1078b7 100644
--- a/core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/SaveUploadTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\SaveUploadTest.
+ * Definition of \Drupal\file\Tests\SaveUploadTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/SpaceUsedTest.php b/core/modules/file/lib/Drupal/file/Tests/SpaceUsedTest.php
index 157de9e..42e26c2 100644
--- a/core/modules/file/lib/Drupal/file/Tests/SpaceUsedTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/SpaceUsedTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\SpaceUsedTest.
+ * Definition of \Drupal\file\Tests\SpaceUsedTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/UsageTest.php b/core/modules/file/lib/Drupal/file/Tests/UsageTest.php
index 17e51d8..e732a97 100644
--- a/core/modules/file/lib/Drupal/file/Tests/UsageTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/UsageTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\UsageTest.
+ * Definition of \Drupal\file\Tests\UsageTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/ValidateTest.php b/core/modules/file/lib/Drupal/file/Tests/ValidateTest.php
index faef73f..954ca8e 100644
--- a/core/modules/file/lib/Drupal/file/Tests/ValidateTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/ValidateTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\ValidateTest.
+ * Definition of \Drupal\file\Tests\ValidateTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/ValidatorTest.php b/core/modules/file/lib/Drupal/file/Tests/ValidatorTest.php
index 8012c4d..be12a9e 100644
--- a/core/modules/file/lib/Drupal/file/Tests/ValidatorTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/ValidatorTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file\Tests\ValidatorTest.
+ * Definition of \Drupal\file\Tests\ValidatorTest.
  */
 
 namespace Drupal\file\Tests;
diff --git a/core/modules/file/lib/Drupal/file/Tests/Views/ExtensionViewsFieldTest.php b/core/modules/file/lib/Drupal/file/Tests/Views/ExtensionViewsFieldTest.php
index 3406a6b..57f2d4c 100644
--- a/core/modules/file/lib/Drupal/file/Tests/Views/ExtensionViewsFieldTest.php
+++ b/core/modules/file/lib/Drupal/file/Tests/Views/ExtensionViewsFieldTest.php
@@ -11,7 +11,7 @@
 use Drupal\views\Tests\ViewTestData;
 
 /**
- * Tests the core Drupal\file\Plugin\views\field\Extension handler.
+ * Tests the core \Drupal\file\Plugin\views\field\Extension handler.
  */
 class ExtensionViewsFieldTest extends ViewUnitTestBase {
 
@@ -30,7 +30,7 @@ class ExtensionViewsFieldTest extends ViewUnitTestBase {
   public static function getInfo() {
     return array(
       'name' => 'Field: File extension',
-      'description' => 'Test the core Drupal\file\Plugin\views\field\Extension handler.',
+      'description' => 'Test the core \Drupal\file\Plugin\views\field\Extension handler.',
       'group' => 'Views Handlers',
     );
   }
diff --git a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyReadOnlyStreamWrapper.php b/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyReadOnlyStreamWrapper.php
index b5adf01..484924f 100644
--- a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyReadOnlyStreamWrapper.php
+++ b/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyReadOnlyStreamWrapper.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file_test\DummyReadOnlyStreamWrapper.
+ * Definition of \Drupal\file_test\DummyReadOnlyStreamWrapper.
  */
 
 namespace Drupal\file_test;
diff --git a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyRemoteStreamWrapper.php b/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyRemoteStreamWrapper.php
index 2741196..d6bdc23 100644
--- a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyRemoteStreamWrapper.php
+++ b/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyRemoteStreamWrapper.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file_test\DummyRemoteStreamWrapper.
+ * Definition of \Drupal\file_test\DummyRemoteStreamWrapper.
  */
 
 namespace Drupal\file_test;
diff --git a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyStreamWrapper.php b/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyStreamWrapper.php
index 4836f09..9e57420 100644
--- a/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyStreamWrapper.php
+++ b/core/modules/file/tests/file_test/lib/Drupal/file_test/DummyStreamWrapper.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\file_test\DummyStreamWrapper.
+ * Definition of \Drupal\file_test\DummyStreamWrapper.
  */
 
 namespace Drupal\file_test;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterAdminTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterAdminTest.php
index 35af5e1..269f975 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterAdminTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterAdminTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterAdminTest.
+ * Definition of \Drupal\filter\Tests\FilterAdminTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterCrudTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterCrudTest.php
index 80b9dd1..11e59fc 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterCrudTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterCrudTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterCrudTest.
+ * Definition of \Drupal\filter\Tests\FilterCrudTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultConfigTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultConfigTest.php
index 4490b5a..c7b7455 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultConfigTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultConfigTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\filter\Tests\FilterDefaultConfigTest.
+ * Contains \Drupal\filter\Tests\FilterDefaultConfigTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultFormatTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultFormatTest.php
index 5df2a5e..a1665ee 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultFormatTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterDefaultFormatTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterDefaultFormatTest.
+ * Definition of \Drupal\filter\Tests\FilterDefaultFormatTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterFormatAccessTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterFormatAccessTest.php
index 87ca50c..35d7142 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterFormatAccessTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterFormatAccessTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterFormatAccessTest.
+ * Definition of \Drupal\filter\Tests\FilterFormatAccessTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterHooksTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterHooksTest.php
index 3d86beb..6858877 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterHooksTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterHooksTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterHooksTest.
+ * Definition of \Drupal\filter\Tests\FilterHooksTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterHtmlImageSecureTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterHtmlImageSecureTest.php
index 644781e..d25bb1c 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterHtmlImageSecureTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterHtmlImageSecureTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\filter\Tests\FilterHtmlImageSecureTest.
+ * Contains \Drupal\filter\Tests\FilterHtmlImageSecureTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterNoFormatTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterNoFormatTest.php
index 59629ba..2e7922d 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterNoFormatTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterNoFormatTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterNoFormatTest.
+ * Definition of \Drupal\filter\Tests\FilterNoFormatTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterSecurityTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterSecurityTest.php
index 13b2b04..35a606d 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterSecurityTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterSecurityTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterSecurityTest.
+ * Definition of \Drupal\filter\Tests\FilterSecurityTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterSettingsTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterSettingsTest.php
index 1b6c173..1539ef3 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterSettingsTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterSettingsTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterSettingsTest.
+ * Definition of \Drupal\filter\Tests\FilterSettingsTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/filter/lib/Drupal/filter/Tests/FilterUnitTest.php b/core/modules/filter/lib/Drupal/filter/Tests/FilterUnitTest.php
index 8b645f7..b19a8f7 100644
--- a/core/modules/filter/lib/Drupal/filter/Tests/FilterUnitTest.php
+++ b/core/modules/filter/lib/Drupal/filter/Tests/FilterUnitTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\filter\Tests\FilterUnitTest.
+ * Definition of \Drupal\filter\Tests\FilterUnitTest.
  */
 
 namespace Drupal\filter\Tests;
diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumBlockTest.php b/core/modules/forum/lib/Drupal/forum/Tests/ForumBlockTest.php
index b6349ab..f5e6f6e 100644
--- a/core/modules/forum/lib/Drupal/forum/Tests/ForumBlockTest.php
+++ b/core/modules/forum/lib/Drupal/forum/Tests/ForumBlockTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\forum\Tests\ForumBlockTest.
+ * Definition of \Drupal\forum\Tests\ForumBlockTest.
  */
 
 namespace Drupal\forum\Tests;
diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumIndexTest.php b/core/modules/forum/lib/Drupal/forum/Tests/ForumIndexTest.php
index e497f9b..1ce7841 100644
--- a/core/modules/forum/lib/Drupal/forum/Tests/ForumIndexTest.php
+++ b/core/modules/forum/lib/Drupal/forum/Tests/ForumIndexTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\forum\Tests\ForumIndexTest.
+ * Definition of \Drupal\forum\Tests\ForumIndexTest.
  */
 
 namespace Drupal\forum\Tests;
diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumNodeAccessTest.php b/core/modules/forum/lib/Drupal/forum/Tests/ForumNodeAccessTest.php
index 1491ce2..a881ef9 100644
--- a/core/modules/forum/lib/Drupal/forum/Tests/ForumNodeAccessTest.php
+++ b/core/modules/forum/lib/Drupal/forum/Tests/ForumNodeAccessTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\forum\Tests\ForumNodeAccessTest.
+ * Definition of \Drupal\forum\Tests\ForumNodeAccessTest.
  */
 
 namespace Drupal\forum\Tests;
diff --git a/core/modules/forum/lib/Drupal/forum/Tests/ForumUninstallTest.php b/core/modules/forum/lib/Drupal/forum/Tests/ForumUninstallTest.php
index 0fe25e3..4ba627d 100644
--- a/core/modules/forum/lib/Drupal/forum/Tests/ForumUninstallTest.php
+++ b/core/modules/forum/lib/Drupal/forum/Tests/ForumUninstallTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\forum\Tests\ForumUninstallTest.
+ * Definition of \Drupal\forum\Tests\ForumUninstallTest.
  */
 
 namespace Drupal\forum\Tests;
diff --git a/core/modules/help/lib/Drupal/help/Tests/HelpTest.php b/core/modules/help/lib/Drupal/help/Tests/HelpTest.php
index 5a40fa0..cefefb3 100644
--- a/core/modules/help/lib/Drupal/help/Tests/HelpTest.php
+++ b/core/modules/help/lib/Drupal/help/Tests/HelpTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\help\Tests\HelpTest.
+ * Definition of \Drupal\help\Tests\HelpTest.
  */
 
 namespace Drupal\help\Tests;
diff --git a/core/modules/help/lib/Drupal/help/Tests/NoHelpTest.php b/core/modules/help/lib/Drupal/help/Tests/NoHelpTest.php
index 02b8e65..c99bb76 100644
--- a/core/modules/help/lib/Drupal/help/Tests/NoHelpTest.php
+++ b/core/modules/help/lib/Drupal/help/Tests/NoHelpTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\help\Tests\NoHelpTest.
+ * Definition of \Drupal\help\Tests\NoHelpTest.
  */
 
 namespace Drupal\help\Tests;
diff --git a/core/modules/image/image.api.php b/core/modules/image/image.api.php
index d2990f5..c83b14e 100644
--- a/core/modules/image/image.api.php
+++ b/core/modules/image/image.api.php
@@ -74,7 +74,7 @@ function hook_image_effect_info_alter(&$effects) {
  * be cleared using this hook. This hook is called whenever a style is updated,
  * deleted, or any effect associated with the style is update or deleted.
  *
- * @param Drupal\image\Plugin\Core\Entity\ImageStyle $style
+ * @param \Drupal\image\Plugin\Core\Entity\ImageStyle $style
  *   The image style array that is being flushed.
  */
 function hook_image_style_flush($style) {
diff --git a/core/modules/image/lib/Drupal/image/Plugin/Core/Entity/ImageStyle.php b/core/modules/image/lib/Drupal/image/Plugin/Core/Entity/ImageStyle.php
index 2e99768..5fb37cc 100644
--- a/core/modules/image/lib/Drupal/image/Plugin/Core/Entity/ImageStyle.php
+++ b/core/modules/image/lib/Drupal/image/Plugin/Core/Entity/ImageStyle.php
@@ -73,7 +73,7 @@ class ImageStyle extends ConfigEntityBase implements ImageStyleInterface {
   public $effects;
 
   /**
-   * Overrides Drupal\Core\Entity\Entity::id().
+   * Overrides \Drupal\Core\Entity\Entity::id().
    */
   public function id() {
     return $this->name;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php
index 973a8ef..2789267 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageAdminStylesTest.
+ * Definition of \Drupal\image\Tests\ImageAdminStylesTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageDimensionsTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageDimensionsTest.php
index e7552d2..f55b741 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageDimensionsTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageDimensionsTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageDimensionsTest.
+ * Definition of \Drupal\image\Tests\ImageDimensionsTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageEffectsTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageEffectsTest.php
index 7f24796..b0024ba 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageEffectsTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageEffectsTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageEffectsTest.
+ * Definition of \Drupal\image\Tests\ImageEffectsTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldDefaultImagesTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageFieldDefaultImagesTest.php
index 164cbad..9b3b8b5 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageFieldDefaultImagesTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageFieldDefaultImagesTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageFieldDefaultImagesTest.
+ * Definition of \Drupal\image\Tests\ImageFieldDefaultImagesTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldDisplayTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageFieldDisplayTest.php
index c0f0cfd..d0871bb 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageFieldDisplayTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageFieldDisplayTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageFieldDisplayTest.
+ * Definition of \Drupal\image\Tests\ImageFieldDisplayTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldTestBase.php b/core/modules/image/lib/Drupal/image/Tests/ImageFieldTestBase.php
index 3b9be9f..739c642 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageFieldTestBase.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageFieldTestBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageFieldTestBase.
+ * Definition of \Drupal\image\Tests\ImageFieldTestBase.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageFieldValidateTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageFieldValidateTest.php
index 1cd0ce9..0f3fdd8 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageFieldValidateTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageFieldValidateTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageFieldValidateTest.
+ * Definition of \Drupal\image\Tests\ImageFieldValidateTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageStylesPathAndUrlTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageStylesPathAndUrlTest.php
index 1b9e2db..6a3b8ad 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageStylesPathAndUrlTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageStylesPathAndUrlTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageStylesPathAndUrlTest.
+ * Definition of \Drupal\image\Tests\ImageStylesPathAndUrlTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageThemeFunctionTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageThemeFunctionTest.php
index cd00cb1..f5ea496 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageThemeFunctionTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageThemeFunctionTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\image\Tests\ImageThemeFunctionTest.
+ * Definition of \Drupal\image\Tests\ImageThemeFunctionTest.
  */
 
 namespace Drupal\image\Tests;
diff --git a/core/modules/language/lib/Drupal/language/HttpKernel/PathProcessorLanguage.php b/core/modules/language/lib/Drupal/language/HttpKernel/PathProcessorLanguage.php
index 2440d2f..3f4c22e 100644
--- a/core/modules/language/lib/Drupal/language/HttpKernel/PathProcessorLanguage.php
+++ b/core/modules/language/lib/Drupal/language/HttpKernel/PathProcessorLanguage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\language\HttpKernel\PathProcessorLanguage.
+ * Contains \Drupal\language\HttpKernel\PathProcessorLanguage.
  */
 
 namespace Drupal\language\HttpKernel;
@@ -71,7 +71,7 @@ public function __construct(ConfigFactory $config, Settings $settings, LanguageM
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
+   * Implements \Drupal\Core\PathProcessor\InboundPathProcessorInterface::processInbound().
    */
   public function processInbound($path, Request $request) {
     if (!empty($path)) {
@@ -91,7 +91,7 @@ public function processInbound($path, Request $request) {
   }
 
   /**
-   * Implements Drupal\Core\PathProcessor\InboundPathProcessorInterface::processOutbound().
+   * Implements \Drupal\Core\PathProcessor\InboundPathProcessorInterface::processOutbound().
    */
   public function processOutbound($path, &$options = array(), Request $request = NULL) {
     if (!$this->languageManager->isMultilingual()) {
diff --git a/core/modules/language/lib/Drupal/language/Plugin/views/argument/LanguageArgument.php b/core/modules/language/lib/Drupal/language/Plugin/views/argument/LanguageArgument.php
index 3435586..f53687c 100644
--- a/core/modules/language/lib/Drupal/language/Plugin/views/argument/LanguageArgument.php
+++ b/core/modules/language/lib/Drupal/language/Plugin/views/argument/LanguageArgument.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\language\Plugin\views\argument\LanguageArgument.
+ * Contains \Drupal\language\Plugin\views\argument\LanguageArgument.
  */
 
 namespace Drupal\language\Plugin\views\argument;
diff --git a/core/modules/language/lib/Drupal/language/Plugin/views/field/LanguageField.php b/core/modules/language/lib/Drupal/language/Plugin/views/field/LanguageField.php
index 62bcaef..ecca925 100644
--- a/core/modules/language/lib/Drupal/language/Plugin/views/field/LanguageField.php
+++ b/core/modules/language/lib/Drupal/language/Plugin/views/field/LanguageField.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\language\Plugin\views\field\LanguageField.
+ * Contains \Drupal\language\Plugin\views\field\LanguageField.
  */
 
 namespace Drupal\language\Plugin\views\field;
diff --git a/core/modules/language/lib/Drupal/language/Plugin/views/filter/LanguageFilter.php b/core/modules/language/lib/Drupal/language/Plugin/views/filter/LanguageFilter.php
index 3bf59c9..a2fdb33 100644
--- a/core/modules/language/lib/Drupal/language/Plugin/views/filter/LanguageFilter.php
+++ b/core/modules/language/lib/Drupal/language/Plugin/views/filter/LanguageFilter.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\language\Plugin\views\filter\LanguageFilter.
+ * Contains \Drupal\language\Plugin\views\filter\LanguageFilter.
  */
 
 namespace Drupal\language\Plugin\views\filter;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageBrowserDetectionUnitTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageBrowserDetectionUnitTest.php
index 80a835d..7a1edd9 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageBrowserDetectionUnitTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageBrowserDetectionUnitTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageBrowserDetectionUnitTest.
+ * Definition of \Drupal\language\Tests\LanguageBrowserDetectionUnitTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationElementTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationElementTest.php
index 1bc67da..62df6e0 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationElementTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationElementTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageConfigurationElementTest.
+ * Definition of \Drupal\language\Tests\LanguageConfigurationElementTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationTest.php
index 770337c..b233508 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageConfigurationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageConfigurationTest.
+ * Definition of \Drupal\language\Tests\LanguageConfigurationTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageCustomLanguageConfigurationTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageCustomLanguageConfigurationTest.php
index f5875af..8852dd6 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageCustomLanguageConfigurationTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageCustomLanguageConfigurationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageCustomConfigurationTest.
+ * Definition of \Drupal\language\Tests\LanguageCustomConfigurationTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageDependencyInjectionTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageDependencyInjectionTest.php
index 088d655..d3bb59a 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageDependencyInjectionTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageDependencyInjectionTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageDependencyInjectionTest.
+ * Definition of \Drupal\language\Tests\LanguageDependencyInjectionTest.
  */
 
 namespace Drupal\language\Tests;
@@ -42,7 +42,7 @@ function setUp() {
   /**
    * Test dependency injected languages against a new Language object.
    *
-   * @see Drupal\Core\Language\Language
+   * @see \Drupal\Core\Language\Language
    */
   function testDependencyInjectedNewLanguage() {
     // Initialize the language system.
@@ -59,7 +59,7 @@ function testDependencyInjectedNewLanguage() {
    * Test dependency injected Language object against a new default language
    * object.
    *
-   * @see Drupal\Core\Language\Language
+   * @see \Drupal\Core\Language\Language
    */
   function testDependencyInjectedNewDefaultLanguage() {
     // Change the language default object to different values.
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageListTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageListTest.php
index 570ae2a..fb2d6fa 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageListTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageListTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageListTest.
+ * Definition of \Drupal\language\Tests\LanguageListTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageNegotiationInfoTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageNegotiationInfoTest.php
index e580e5c..28708f7 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageNegotiationInfoTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageNegotiationInfoTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageNegotiationInfoTest.
+ * Definition of \Drupal\language\Tests\LanguageNegotiationInfoTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguagePathMonolingualTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguagePathMonolingualTest.php
index 89a1bd6..6a9e514 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguagePathMonolingualTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguagePathMonolingualTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguagePathMonolingualTest.
+ * Definition of \Drupal\language\Tests\LanguagePathMonolingualTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageSwitchingTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageSwitchingTest.php
index 6265660..a244d5c 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageSwitchingTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageSwitchingTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageSwitchingTest.
+ * Definition of \Drupal\language\Tests\LanguageSwitchingTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php
index c9c05e8..e1dd975 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageUILanguageNegotiationTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageUILanguageNegotiationTest.
+ * Definition of \Drupal\language\Tests\LanguageUILanguageNegotiationTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/LanguageUrlRewritingTest.php b/core/modules/language/lib/Drupal/language/Tests/LanguageUrlRewritingTest.php
index 7801959..3dc7cef 100644
--- a/core/modules/language/lib/Drupal/language/Tests/LanguageUrlRewritingTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/LanguageUrlRewritingTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\language\Tests\LanguageUrlRewritingTest.
+ * Definition of \Drupal\language\Tests\LanguageUrlRewritingTest.
  */
 
 namespace Drupal\language\Tests;
diff --git a/core/modules/language/lib/Drupal/language/Tests/Views/ArgumentLanguageTest.php b/core/modules/language/lib/Drupal/language/Tests/Views/ArgumentLanguageTest.php
index f3e4068..9469d36 100644
--- a/core/modules/language/lib/Drupal/language/Tests/Views/ArgumentLanguageTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/Views/ArgumentLanguageTest.php
@@ -12,7 +12,7 @@
 /**
  * Tests the argument language handler.
  *
- * @see Drupal\language\Plugin\views\argument\Language.php
+ * @see \Drupal\language\Plugin\views\argument\Language.php
  */
 class ArgumentLanguageTest extends LanguageTestBase {
 
diff --git a/core/modules/language/lib/Drupal/language/Tests/Views/FieldLanguageTest.php b/core/modules/language/lib/Drupal/language/Tests/Views/FieldLanguageTest.php
index fa5a387..7a831c6 100644
--- a/core/modules/language/lib/Drupal/language/Tests/Views/FieldLanguageTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/Views/FieldLanguageTest.php
@@ -12,7 +12,7 @@
 /**
  * Tests the field language handler.
  *
- * @see Drupal\language\Plugin\views\field\Language
+ * @see \Drupal\language\Plugin\views\field\Language
  */
 class FieldLanguageTest extends LanguageTestBase {
 
diff --git a/core/modules/language/lib/Drupal/language/Tests/Views/FilterLanguageTest.php b/core/modules/language/lib/Drupal/language/Tests/Views/FilterLanguageTest.php
index b2d03a4..5387978 100644
--- a/core/modules/language/lib/Drupal/language/Tests/Views/FilterLanguageTest.php
+++ b/core/modules/language/lib/Drupal/language/Tests/Views/FilterLanguageTest.php
@@ -12,7 +12,7 @@
 /**
  * Tests the filter language handler.
  *
- * @see Drupal\language\Plugin\views\filter\Language
+ * @see \Drupal\language\Plugin\views\filter\Language
  */
 class FilterLanguageTest extends LanguageTestBase {
 
diff --git a/core/modules/layout/lib/Drupal/layout/Config/BoundDisplayInterface.php b/core/modules/layout/lib/Drupal/layout/Config/BoundDisplayInterface.php
index 125c34e..db8b911 100644
--- a/core/modules/layout/lib/Drupal/layout/Config/BoundDisplayInterface.php
+++ b/core/modules/layout/lib/Drupal/layout/Config/BoundDisplayInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\layout\Config\BoundDisplayInterface
+ * Definition of \Drupal\layout\Config\BoundDisplayInterface
  */
 
 namespace Drupal\layout\Config;
diff --git a/core/modules/layout/lib/Drupal/layout/Config/DisplayBase.php b/core/modules/layout/lib/Drupal/layout/Config/DisplayBase.php
index afe3229..a4ad886 100644
--- a/core/modules/layout/lib/Drupal/layout/Config/DisplayBase.php
+++ b/core/modules/layout/lib/Drupal/layout/Config/DisplayBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\layout\Config\DisplayBase.
+ * Definition of \Drupal\layout\Config\DisplayBase.
  */
 
 namespace Drupal\layout\Config;
diff --git a/core/modules/layout/lib/Drupal/layout/Config/DisplayInterface.php b/core/modules/layout/lib/Drupal/layout/Config/DisplayInterface.php
index 916d897..1a42a93 100644
--- a/core/modules/layout/lib/Drupal/layout/Config/DisplayInterface.php
+++ b/core/modules/layout/lib/Drupal/layout/Config/DisplayInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\layout\Config\DisplayInterface
+ * Definition of \Drupal\layout\Config\DisplayInterface
  */
 
 namespace Drupal\layout\Config;
diff --git a/core/modules/layout/lib/Drupal/layout/Config/UnboundDisplayInterface.php b/core/modules/layout/lib/Drupal/layout/Config/UnboundDisplayInterface.php
index 34ba2f8..9e72afa 100644
--- a/core/modules/layout/lib/Drupal/layout/Config/UnboundDisplayInterface.php
+++ b/core/modules/layout/lib/Drupal/layout/Config/UnboundDisplayInterface.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\layout\Config\UnboundDisplayInterface
+ * Definition of \Drupal\layout\Config\UnboundDisplayInterface
  */
 
 namespace Drupal\layout\Config;
diff --git a/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/Display.php b/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/Display.php
index adaf260..862f56b 100644
--- a/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/Display.php
+++ b/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/Display.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\layout\Plugin\Core\Entity\Display.
+ * Definition of \Drupal\layout\Plugin\Core\Entity\Display.
  */
 
 namespace Drupal\layout\Plugin\Core\Entity;
diff --git a/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/UnboundDisplay.php b/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/UnboundDisplay.php
index d2f4880..55dc071 100644
--- a/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/UnboundDisplay.php
+++ b/core/modules/layout/lib/Drupal/layout/Plugin/Core/Entity/UnboundDisplay.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\layout\Plugin\Core\Entity\Display.
+ * Definition of \Drupal\layout\Plugin\Core\Entity\Display.
  */
 
 namespace Drupal\layout\Plugin\Core\Entity;
diff --git a/core/modules/layout/lib/Drupal/layout/Plugin/Derivative/Layout.php b/core/modules/layout/lib/Drupal/layout/Plugin/Derivative/Layout.php
index 2080d6d..772628d 100644
--- a/core/modules/layout/lib/Drupal/layout/Plugin/Derivative/Layout.php
+++ b/core/modules/layout/lib/Drupal/layout/Plugin/Derivative/Layout.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\layout\Plugin\Derivative\Layout.
+ * Definition of \Drupal\layout\Plugin\Derivative\Layout.
  */
 
 namespace Drupal\layout\Plugin\Derivative;
diff --git a/core/modules/layout/lib/Drupal/layout/Plugin/Layout/StaticLayout.php b/core/modules/layout/lib/Drupal/layout/Plugin/Layout/StaticLayout.php
index 56e88fe..fea4cdc 100644
--- a/core/modules/layout/lib/Drupal/layout/Plugin/Layout/StaticLayout.php
+++ b/core/modules/layout/lib/Drupal/layout/Plugin/Layout/StaticLayout.php
@@ -20,7 +20,7 @@
 class StaticLayout extends PluginBase implements LayoutInterface {
 
   /**
-   * Overrides Drupal\Component\Plugin\PluginBase::__construct().
+   * Overrides \Drupal\Component\Plugin\PluginBase::__construct().
    */
   public function __construct(array $configuration, $plugin_id, array $plugin_definition) {
     foreach ($plugin_definition['regions'] as $region => $title) {
@@ -32,7 +32,7 @@ public function __construct(array $configuration, $plugin_id, array $plugin_defi
   }
 
   /**
-   * Implements Drupal\layout\Plugin\LayoutInterface::getRegions().
+   * Implements \Drupal\layout\Plugin\LayoutInterface::getRegions().
    */
   public function getRegions() {
     $definition = $this->getPluginDefinition();
@@ -73,7 +73,7 @@ public function getAdminScriptFiles() {
   }
 
   /**
-   * Implements Drupal\layout\Plugin\LayoutInterface::renderLayout().
+   * Implements \Drupal\layout\Plugin\LayoutInterface::renderLayout().
    */
   public function renderLayout($admin = FALSE, $regions = array()) {
     $definition = $this->getPluginDefinition();
diff --git a/core/modules/layout/lib/Drupal/layout/Plugin/LayoutInterface.php b/core/modules/layout/lib/Drupal/layout/Plugin/LayoutInterface.php
index 829f3c2..82bad38 100644
--- a/core/modules/layout/lib/Drupal/layout/Plugin/LayoutInterface.php
+++ b/core/modules/layout/lib/Drupal/layout/Plugin/LayoutInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\layout\Plugin\LayoutInterface.
+ * Definition of \Drupal\layout\Plugin\LayoutInterface.
  */
 
 namespace Drupal\layout\Plugin;
diff --git a/core/modules/layout/lib/Drupal/layout/Plugin/Type/LayoutManager.php b/core/modules/layout/lib/Drupal/layout/Plugin/Type/LayoutManager.php
index e22623f1..0a9dfbb 100644
--- a/core/modules/layout/lib/Drupal/layout/Plugin/Type/LayoutManager.php
+++ b/core/modules/layout/lib/Drupal/layout/Plugin/Type/LayoutManager.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\layout\Plugin\Type\LayoutManager.
+ * Definition of \Drupal\layout\Plugin\Type\LayoutManager.
  */
 
 namespace Drupal\layout\Plugin\Type;
@@ -23,7 +23,7 @@ class LayoutManager extends PluginManagerBase {
   );
 
   /**
-   * Overrides Drupal\Component\Plugin\PluginManagerBase::__construct().
+   * Overrides \Drupal\Component\Plugin\PluginManagerBase::__construct().
    *
    * @param \Traversable $namespaces
    *   An object that implements \Traversable which contains the root paths
diff --git a/core/modules/layout/lib/Drupal/layout/Tests/LayoutDerivativesTest.php b/core/modules/layout/lib/Drupal/layout/Tests/LayoutDerivativesTest.php
index f41460c..290418b 100644
--- a/core/modules/layout/lib/Drupal/layout/Tests/LayoutDerivativesTest.php
+++ b/core/modules/layout/lib/Drupal/layout/Tests/LayoutDerivativesTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\layout\Tests\LayoutDerivativesTest.
+ * Definition of \Drupal\layout\Tests\LayoutDerivativesTest.
  */
 
 namespace Drupal\layout\Tests;
diff --git a/core/modules/link/lib/Drupal/link/Tests/LinkFieldTest.php b/core/modules/link/lib/Drupal/link/Tests/LinkFieldTest.php
index b4033ff..0a03b8e 100644
--- a/core/modules/link/lib/Drupal/link/Tests/LinkFieldTest.php
+++ b/core/modules/link/lib/Drupal/link/Tests/LinkFieldTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\link\Tests\LinkFieldTest.
+ * Contains \Drupal\link\Tests\LinkFieldTest.
  */
 
 namespace Drupal\link\Tests;
diff --git a/core/modules/link/lib/Drupal/link/Tests/LinkFieldUITest.php b/core/modules/link/lib/Drupal/link/Tests/LinkFieldUITest.php
index 910ff14..14cf10f 100644
--- a/core/modules/link/lib/Drupal/link/Tests/LinkFieldUITest.php
+++ b/core/modules/link/lib/Drupal/link/Tests/LinkFieldUITest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\link\Tests\LinkFieldUITest.
+ * Contains \Drupal\link\Tests\LinkFieldUITest.
  */
 
 namespace Drupal\link\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Gettext.php b/core/modules/locale/lib/Drupal/locale/Gettext.php
index f9f9129..06ca574 100644
--- a/core/modules/locale/lib/Drupal/locale/Gettext.php
+++ b/core/modules/locale/lib/Drupal/locale/Gettext.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Gettext.
+ * Definition of \Drupal\locale\Gettext.
  */
 
 namespace Drupal\locale;
@@ -31,7 +31,7 @@ class Gettext {
    * @param array $options
    *   An array with options that can have the following elements:
    *   - 'overwrite_options': Overwrite options array as defined in
-   *     Drupal\locale\PoDatabaseWriter. Optional, defaults to an empty array.
+   *     \Drupal\locale\PoDatabaseWriter. Optional, defaults to an empty array.
    *   - 'customized': Flag indicating whether the strings imported from $file
    *     are customized translations or come from a community source. Use
    *     LOCALE_CUSTOMIZED or LOCALE_NOT_CUSTOMIZED. Optional, defaults to
@@ -42,9 +42,9 @@ class Gettext {
    *     -1, which means that all the items from the stream will be read.
    *
    * @return array
-   *   Report array as defined in Drupal\locale\PoDatabaseWriter.
+   *   Report array as defined in \Drupal\locale\PoDatabaseWriter.
    *
-   * @see Drupal\locale\PoDatabaseWriter
+   * @see \Drupal\locale\PoDatabaseWriter
    */
   static function fileToDatabase($file, $options) {
     // Add the default values to the options array.
diff --git a/core/modules/locale/lib/Drupal/locale/PoDatabaseReader.php b/core/modules/locale/lib/Drupal/locale/PoDatabaseReader.php
index 019ce95..e87428a 100644
--- a/core/modules/locale/lib/Drupal/locale/PoDatabaseReader.php
+++ b/core/modules/locale/lib/Drupal/locale/PoDatabaseReader.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\PoDatabaseReader.
+ * Definition of \Drupal\locale\PoDatabaseReader.
  */
 
 namespace Drupal\locale;
@@ -56,14 +56,14 @@ function __construct() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::getLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::getLangcode().
    */
   public function getLangcode() {
     return $this->_langcode;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::setLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::setLangcode().
    */
   public function setLangcode($langcode) {
     $this->_langcode = $langcode;
@@ -89,14 +89,14 @@ function setOptions(array $options) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::getHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::getHeader().
    */
   function getHeader() {
     return new PoHeader($this->getLangcode());
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::setHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::setHeader().
    *
    * @throws Exception
    *   Always, because you cannot set the PO header of a reader.
@@ -164,7 +164,7 @@ private function readString() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoReaderInterface::readItem().
+   * Implements \Drupal\Component\Gettext\PoReaderInterface::readItem().
    */
   function readItem() {
     if ($string = $this->readString()) {
diff --git a/core/modules/locale/lib/Drupal/locale/PoDatabaseWriter.php b/core/modules/locale/lib/Drupal/locale/PoDatabaseWriter.php
index b28748a..9bfbea2 100644
--- a/core/modules/locale/lib/Drupal/locale/PoDatabaseWriter.php
+++ b/core/modules/locale/lib/Drupal/locale/PoDatabaseWriter.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\PoDatabaseWriter.
+ * Definition of \Drupal\locale\PoDatabaseWriter.
  */
 
 namespace Drupal\locale;
@@ -45,7 +45,7 @@ class PoDatabaseWriter implements PoWriterInterface {
   /**
    * Header of the po file written to the database.
    *
-   * @var Drupal\Component\Gettext\PoHeader
+   * @var \Drupal\Component\Gettext\PoHeader
    */
   private $_header;
 
@@ -70,14 +70,14 @@ function __construct() {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::getLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::getLangcode().
    */
   public function getLangcode() {
     return $this->_langcode;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::setLangcode().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::setLangcode().
    */
   public function setLangcode($langcode) {
     $this->_langcode = $langcode;
@@ -132,14 +132,14 @@ function setOptions(array $options) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::getHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::getHeader().
    */
   function getHeader() {
     return $this->_header;
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoMetadataInterface::setHeader().
+   * Implements \Drupal\Component\Gettext\PoMetadataInterface::setHeader().
    *
    * Sets the header and configure Drupal accordingly.
    *
@@ -148,7 +148,7 @@ function getHeader() {
    *
    * A langcode is required to set the current header's PluralForm.
    *
-   * @param Drupal\Component\Gettext\PoHeader $header
+   * @param \Drupal\Component\Gettext\PoHeader $header
    *   Header metadata.
    *
    * @throws Exception
@@ -186,7 +186,7 @@ function setHeader(PoHeader $header) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoWriterInterface::writeItem().
+   * Implements \Drupal\Component\Gettext\PoWriterInterface::writeItem().
    */
   function writeItem(PoItem $item) {
     if ($item->isPlural()) {
@@ -197,7 +197,7 @@ function writeItem(PoItem $item) {
   }
 
   /**
-   * Implements Drupal\Component\Gettext\PoWriterInterface::writeItems().
+   * Implements \Drupal\Component\Gettext\PoWriterInterface::writeItems().
    */
   public function writeItems(PoReaderInterface $reader, $count = -1) {
     $forever = $count == -1;
@@ -209,7 +209,7 @@ public function writeItems(PoReaderInterface $reader, $count = -1) {
   /**
    * Imports one string into the database.
    *
-   * @param Drupal\Component\Gettext\PoItem $item
+   * @param \Drupal\Component\Gettext\PoItem $item
    *   The item being imported.
    *
    * @return int
diff --git a/core/modules/locale/lib/Drupal/locale/SourceString.php b/core/modules/locale/lib/Drupal/locale/SourceString.php
index 40254f4..0f11a4b 100644
--- a/core/modules/locale/lib/Drupal/locale/SourceString.php
+++ b/core/modules/locale/lib/Drupal/locale/SourceString.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\SourceString.
+ * Definition of \Drupal\locale\SourceString.
  */
 
 namespace Drupal\locale;
@@ -19,28 +19,28 @@
  */
 class SourceString extends StringBase {
   /**
-   * Implements Drupal\locale\StringInterface::isSource().
+   * Implements \Drupal\locale\StringInterface::isSource().
    */
   public function isSource() {
     return isset($this->source);
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::isTranslation().
+   * Implements \Drupal\locale\StringInterface::isTranslation().
    */
   public function isTranslation() {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\locale\LocaleString::getString().
+   * Implements \Drupal\locale\LocaleString::getString().
    */
   public function getString() {
     return isset($this->source) ? $this->source : '';
   }
 
   /**
-   * Implements Drupal\locale\LocaleString::setString().
+   * Implements \Drupal\locale\LocaleString::setString().
    */
   public function setString($string) {
     $this->source = $string;
@@ -48,7 +48,7 @@ public function setString($string) {
   }
 
   /**
-   * Implements Drupal\locale\LocaleString::isNew().
+   * Implements \Drupal\locale\LocaleString::isNew().
    */
   public function isNew() {
     return empty($this->lid);
diff --git a/core/modules/locale/lib/Drupal/locale/StringBase.php b/core/modules/locale/lib/Drupal/locale/StringBase.php
index e2d9bcc..2252a64 100644
--- a/core/modules/locale/lib/Drupal/locale/StringBase.php
+++ b/core/modules/locale/lib/Drupal/locale/StringBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\StringBase.
+ * Definition of \Drupal\locale\StringBase.
  */
 
 namespace Drupal\locale;
@@ -52,7 +52,7 @@
   /**
    * The locale storage this string comes from or is to be saved to.
    *
-   * @var Drupal\locale\StringStorageInterface
+   * @var \Drupal\locale\StringStorageInterface
    */
   protected $storage;
 
@@ -67,14 +67,14 @@ public function __construct($values = array()) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::getId().
+   * Implements \Drupal\locale\StringInterface::getId().
    */
   public function getId() {
     return isset($this->lid) ? $this->lid : NULL;
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::setId().
+   * Implements \Drupal\locale\StringInterface::setId().
    */
   public function setId($lid) {
     $this->lid = $lid;
@@ -82,14 +82,14 @@ public function setId($lid) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::getVersion().
+   * Implements \Drupal\locale\StringInterface::getVersion().
    */
   public function getVersion() {
     return isset($this->version) ? $this->version : NULL;
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::setVersion().
+   * Implements \Drupal\locale\StringInterface::setVersion().
    */
   public function setVersion($version) {
     $this->version = $version;
@@ -97,14 +97,14 @@ public function setVersion($version) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::getPlurals().
+   * Implements \Drupal\locale\StringInterface::getPlurals().
    */
   public function getPlurals() {
     return explode(LOCALE_PLURAL_DELIMITER, $this->getString());
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::setPlurals().
+   * Implements \Drupal\locale\StringInterface::setPlurals().
    */
   public function setPlurals($plurals) {
     $this->setString(implode(LOCALE_PLURAL_DELIMITER, $plurals));
@@ -112,14 +112,14 @@ public function setPlurals($plurals) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::getStorage().
+   * Implements \Drupal\locale\StringInterface::getStorage().
    */
   public function getStorage() {
     return isset($this->storage) ? $this->storage : NULL;
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::setStorage().
+   * Implements \Drupal\locale\StringInterface::setStorage().
    */
   public function setStorage($storage) {
     $this->storage = $storage;
@@ -127,7 +127,7 @@ public function setStorage($storage) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::setValues().
+   * Implements \Drupal\locale\StringInterface::setValues().
    */
   public function setValues(array $values, $override = TRUE) {
     foreach ($values as $key => $value) {
@@ -139,7 +139,7 @@ public function setValues(array $values, $override = TRUE) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::getValues().
+   * Implements \Drupal\locale\StringInterface::getValues().
    */
   public function getValues(array $fields) {
     $values = array();
@@ -152,7 +152,7 @@ public function getValues(array $fields) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::getLocation().
+   * Implements \Drupal\locale\StringInterface::getLocation().
    */
   public function getLocations($check_only = FALSE) {
     if (!isset($this->locations) && !$check_only) {
@@ -165,7 +165,7 @@ public function getLocations($check_only = FALSE) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::addLocation().
+   * Implements \Drupal\locale\StringInterface::addLocation().
    */
   public function addLocation($type, $name) {
     $this->locations[$type][$name] = TRUE;
@@ -173,7 +173,7 @@ public function addLocation($type, $name) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::hasLocation().
+   * Implements \Drupal\locale\StringInterface::hasLocation().
    */
   public function hasLocation($type, $name) {
     $locations = $this->getLocations();
@@ -181,7 +181,7 @@ public function hasLocation($type, $name) {
   }
 
   /**
-   * Implements Drupal\locale\LocaleString::save().
+   * Implements \Drupal\locale\LocaleString::save().
    */
   public function save() {
     if ($storage = $this->getStorage()) {
@@ -196,7 +196,7 @@ public function save() {
   }
 
   /**
-   * Implements Drupal\locale\LocaleString::delete().
+   * Implements \Drupal\locale\LocaleString::delete().
    */
   public function delete() {
     if (!$this->isNew()) {
diff --git a/core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php b/core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php
index d18e35f..d0dda8c 100644
--- a/core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php
+++ b/core/modules/locale/lib/Drupal/locale/StringDatabaseStorage.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\StringDatabaseStorage.
+ * Definition of \Drupal\locale\StringDatabaseStorage.
  */
 
 namespace Drupal\locale;
@@ -20,7 +20,7 @@ class StringDatabaseStorage implements StringStorageInterface {
   /**
    * The database connection.
    *
-   * @var Drupal\Core\Database\Connection
+   * @var \Drupal\Core\Database\Connection
    */
   protected $connection;
 
@@ -34,7 +34,7 @@ class StringDatabaseStorage implements StringStorageInterface {
   /**
    * Constructs a new StringStorage 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 array $options
    *   (optional) Any additional database connection options to use in queries.
@@ -45,21 +45,21 @@ public function __construct(Connection $connection, array $options = array()) {
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::getStrings().
+   * Implements \Drupal\locale\StringStorageInterface::getStrings().
    */
   public function getStrings(array $conditions = array(), array $options = array()) {
     return $this->dbStringLoad($conditions, $options, 'Drupal\locale\SourceString');
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::getTranslations().
+   * Implements \Drupal\locale\StringStorageInterface::getTranslations().
    */
   public function getTranslations(array $conditions = array(), array $options = array()) {
     return $this->dbStringLoad($conditions, array('translation' => TRUE) + $options, 'Drupal\locale\TranslationString');
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::findString().
+   * Implements \Drupal\locale\StringStorageInterface::findString().
    */
   public function findString(array $conditions) {
     $values = $this->dbStringSelect($conditions)
@@ -74,7 +74,7 @@ public function findString(array $conditions) {
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::findTranslation().
+   * Implements \Drupal\locale\StringStorageInterface::findTranslation().
    */
   public function findTranslation(array $conditions) {
     $values = $this->dbStringSelect($conditions, array('translation' => TRUE))
@@ -90,7 +90,7 @@ public function findTranslation(array $conditions) {
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::getLocations().
+   * Implements \Drupal\locale\StringStorageInterface::getLocations().
    */
   function getLocations(array $conditions = array()) {
     $query = $this->connection->select('locales_location', 'l', $this->options)
@@ -102,21 +102,21 @@ function getLocations(array $conditions = array()) {
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::countStrings().
+   * Implements \Drupal\locale\StringStorageInterface::countStrings().
    */
   public function countStrings() {
     return $this->dbExecute("SELECT COUNT(*) FROM {locales_source}")->fetchField();
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::countTranslations().
+   * Implements \Drupal\locale\StringStorageInterface::countTranslations().
    */
   public function countTranslations() {
     return $this->dbExecute("SELECT t.language, COUNT(*) AS translated FROM {locales_source} s INNER JOIN {locales_target} t ON s.lid = t.lid GROUP BY t.language")->fetchAllKeyed();
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::save().
+   * Implements \Drupal\locale\StringStorageInterface::save().
    */
   public function save($string) {
     if ($string->isNew()) {
@@ -138,7 +138,7 @@ public function save($string) {
   /**
    * Update locations for string.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    */
   protected function updateLocation($string) {
@@ -171,7 +171,7 @@ protected function updateLocation($string) {
   /**
    * Checks whether the string version matches a given version, fix it if not.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    * @param string $version
    *   Drupal version to check against.
@@ -187,7 +187,7 @@ protected function checkVersion($string, $version) {
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::delete().
+   * Implements \Drupal\locale\StringStorageInterface::delete().
    */
   public function delete($string) {
     if ($keys = $this->dbStringKeys($string)) {
@@ -207,7 +207,7 @@ public function delete($string) {
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::deleteLanguage().
+   * Implements \Drupal\locale\StringStorageInterface::deleteLanguage().
    */
   public function deleteStrings($conditions) {
     $lids = $this->dbStringSelect($conditions, array('fields' => array('lid')))->execute()->fetchCol();
@@ -219,21 +219,21 @@ public function deleteStrings($conditions) {
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::deleteLanguage().
+   * Implements \Drupal\locale\StringStorageInterface::deleteLanguage().
    */
   public function deleteTranslations($conditions) {
     $this->dbDelete('locales_target', $conditions)->execute();
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::createString().
+   * Implements \Drupal\locale\StringStorageInterface::createString().
    */
   public function createString($values = array()) {
     return new SourceString($values + array('storage' => $this));
   }
 
   /**
-   * Implements Drupal\locale\StringStorageInterface::createTranslation().
+   * Implements \Drupal\locale\StringStorageInterface::createTranslation().
    */
   public function createTranslation($values = array()) {
     return new TranslationString($values + array(
@@ -267,7 +267,7 @@ protected function dbFieldTable($field) {
   /**
    * Gets table name for storing string object.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    *
    * @return string
@@ -285,7 +285,7 @@ protected function dbStringTable($string) {
   /**
    * Gets keys values that are in a database table.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    *
    * @return array
@@ -343,7 +343,7 @@ protected function dbStringLoad(array $conditions, array $options, $class) {
    *   joining the 'locales_target' table.
    * @param array $options
    *   An associative array of additional options. It may contain any of the
-   *   options used by Drupal\locale\StringStorageInterface::getStrings() and
+   *   options used by \Drupal\locale\StringStorageInterface::getStrings() and
    *   these additional ones:
    *   - 'translation', Whether to include translation fields too. Defaults to
    *     FALSE.
@@ -451,14 +451,14 @@ protected function dbStringSelect(array $conditions, array $options = array()) {
   /**
    * Createds a database record for a string object.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    *
    * @return bool|int
    *   If the operation failed, returns FALSE.
    *   If it succeeded returns the last insert ID of the query, if one exists.
    *
-   * @throws Drupal\locale\StringStorageException
+   * @throws \Drupal\locale\StringStorageException
    *   If the string is not suitable for this storage, an exception ithrown.
    */
   protected function dbStringInsert($string) {
@@ -485,14 +485,14 @@ protected function dbStringInsert($string) {
   /**
    * Updates string object in the database.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    *
    * @return bool|int
    *   If the record update failed, returns FALSE. If it succeeded, returns
    *   SAVED_NEW or SAVED_UPDATED.
    *
-   * @throws Drupal\locale\StringStorageException
+   * @throws \Drupal\locale\StringStorageException
    *   If the string is not suitable for this storage, an exception is thrown.
    */
   protected function dbStringUpdate($string) {
diff --git a/core/modules/locale/lib/Drupal/locale/StringInterface.php b/core/modules/locale/lib/Drupal/locale/StringInterface.php
index 05e3c01..2e42cb8 100644
--- a/core/modules/locale/lib/Drupal/locale/StringInterface.php
+++ b/core/modules/locale/lib/Drupal/locale/StringInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\StringInterface.
+ * Definition of \Drupal\locale\StringInterface.
  */
 
 namespace Drupal\locale;
@@ -26,7 +26,7 @@ public function getId();
    * @param int $id
    *   The string identifier.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
    */
   public function setId($id);
@@ -45,7 +45,7 @@ public function getVersion();
    * @param string $version
    *   Version identifier.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
    */
   public function setVersion($version);
@@ -64,7 +64,7 @@ public function getString();
    * @param string $string
    *   String to set as value.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
   */
   public function setString($string);
@@ -85,7 +85,7 @@ public function getPlurals();
    * @param array $plurals
    *   Array of strings with plural variants.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
   */
   public function setPlurals($plurals);
@@ -93,7 +93,7 @@ public function setPlurals($plurals);
   /**
    * Gets the string storage.
    *
-   * @return Drupal\locale\StringStorageInterface
+   * @return \Drupal\locale\StringStorageInterface
    *   The storage used for this string.
    */
   public function getStorage();
@@ -101,10 +101,10 @@ public function getStorage();
   /**
    * Sets the string storage.
    *
-   * @param Drupal\locale\StringStorageInterface $storage
+   * @param \Drupal\locale\StringStorageInterface $storage
    *   The storage to use for this string.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
   */
   public function setStorage($storage);
@@ -141,7 +141,7 @@ public function isTranslation();
    * @param bool $override
    *   (optional) Whether to override already set fields, defaults to TRUE.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
    */
   public function setValues(array $values, $override = TRUE);
@@ -187,7 +187,7 @@ public function getLocations($check_only = FALSE);
    *   file path in case of imported strings, configuration name for strings
    *   that come from configuration, etc...
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
    */
   public function addLocation($type, $name);
@@ -208,10 +208,10 @@ public function hasLocation($type, $name);
   /**
    * Saves string object to storage.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
    *
-   * @throws Drupal\locale\StringStorageException
+   * @throws \Drupal\locale\StringStorageException
    *   In case of failures, an exception is thrown.
    */
   public function save();
@@ -219,10 +219,10 @@ public function save();
   /**
    * Deletes string object from storage.
    *
-   * @return Drupal\locale\LocaleString
+   * @return \Drupal\locale\LocaleString
    *   The called object.
    *
-   * @throws Drupal\locale\StringStorageException
+   * @throws \Drupal\locale\StringStorageException
    *   In case of failures, an exception is thrown.
    */
   public function delete();
diff --git a/core/modules/locale/lib/Drupal/locale/StringStorageException.php b/core/modules/locale/lib/Drupal/locale/StringStorageException.php
index 96df9a6..7a8bed5 100644
--- a/core/modules/locale/lib/Drupal/locale/StringStorageException.php
+++ b/core/modules/locale/lib/Drupal/locale/StringStorageException.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\Core\Entity\StringStorageException.
+ * Definition of \Drupal\Core\Entity\StringStorageException.
  */
 
 namespace Drupal\locale;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleContentTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleContentTest.php
index c55927f..a1b4c8c 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleContentTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleContentTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleContentTest.
+ * Definition of \Drupal\locale\Tests\LocaleContentTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleExportTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleExportTest.php
index 954e74d..f6b348d 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleExportTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleExportTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleExportTest.
+ * Definition of \Drupal\locale\Tests\LocaleExportTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleImportFunctionalTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleImportFunctionalTest.php
index fcc74d0..f7c2ee0 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleImportFunctionalTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleImportFunctionalTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleImportFunctionalTest.
+ * Definition of \Drupal\locale\Tests\LocaleImportFunctionalTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleJavascriptTranslation.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleJavascriptTranslation.php
index de5dd08..1ae7367 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleJavascriptTranslation.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleJavascriptTranslation.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleJavascriptTranslation.
+ * Definition of \Drupal\locale\Tests\LocaleJavascriptTranslation.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleLibraryInfoAlterTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleLibraryInfoAlterTest.php
index 0581124..df4e879 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleLibraryInfoAlterTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleLibraryInfoAlterTest.php
@@ -1,7 +1,7 @@
 <?php
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleLibraryInfoAlterTest.
+ * Definition of \Drupal\locale\Tests\LocaleLibraryInfoAlterTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocalePathTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocalePathTest.php
index 77b27c8..2dd3747 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocalePathTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocalePathTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocalePathTest.
+ * Definition of \Drupal\locale\Tests\LocalePathTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
index a5ed01b..974af30 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocalePluralFormatTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocalePluralFormatTest.
+ * Definition of \Drupal\locale\Tests\LocalePluralFormatTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleStringTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleStringTest.php
index 37b796c..2a4793b 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleStringTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleStringTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleStringTest.
+ * Definition of \Drupal\locale\Tests\LocaleStringTest.
  */
 
 namespace Drupal\locale\Tests;
@@ -27,7 +27,7 @@ class LocaleStringTest extends WebTestBase {
   /**
    * The locale storage.
    *
-   * @var Drupal\locale\StringStorageInterface
+   * @var \Drupal\locale\StringStorageInterface
    */
   protected $storage;
 
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslationUiTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslationUiTest.php
index d2f1579..e145e24 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslationUiTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleTranslationUiTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleTranslationTest.
+ * Definition of \Drupal\locale\Tests\LocaleTranslationTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallFrenchTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallFrenchTest.php
index 047ff63..8dce4c7 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallFrenchTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallFrenchTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleUninstallFrenchTest.
+ * Definition of \Drupal\locale\Tests\LocaleUninstallFrenchTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallTest.php
index 5675229..0e4d5e5 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUninstallTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\Tests\LocaleUninstallTest.
+ * Definition of \Drupal\locale\Tests\LocaleUninstallTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateBase.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateBase.php
index ec9e74f..abb3acc 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateBase.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateBase.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\locale\Tests\LocaleUpdateTest.
+ * Contains \Drupal\locale\Tests\LocaleUpdateTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateCronTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateCronTest.php
index 04dd4fd..cfeb285 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateCronTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateCronTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\locale\Tests\LocaleUpdateCronTest.
+ * Contains \Drupal\locale\Tests\LocaleUpdateCronTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateInterfaceTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateInterfaceTest.php
index 0a502b6..efe07a6 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateInterfaceTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateInterfaceTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\locale\Tests\LocaleUpdateInterfaceTest.
+ * Contains \Drupal\locale\Tests\LocaleUpdateInterfaceTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php
index 44bfabe..8dac055 100644
--- a/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php
+++ b/core/modules/locale/lib/Drupal/locale/Tests/LocaleUpdateTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\locale\Tests\LocaleUpdateTest.
+ * Contains \Drupal\locale\Tests\LocaleUpdateTest.
  */
 
 namespace Drupal\locale\Tests;
diff --git a/core/modules/locale/lib/Drupal/locale/TranslationString.php b/core/modules/locale/lib/Drupal/locale/TranslationString.php
index 498dd66..6ad0068 100644
--- a/core/modules/locale/lib/Drupal/locale/TranslationString.php
+++ b/core/modules/locale/lib/Drupal/locale/TranslationString.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\TranslationString.
+ * Definition of \Drupal\locale\TranslationString.
  */
 
 namespace Drupal\locale;
@@ -45,7 +45,7 @@ class TranslationString extends StringBase {
   protected $is_new;
 
   /**
-   * Overrides Drupal\locale\StringBase::__construct().
+   * Overrides \Drupal\locale\StringBase::__construct().
    */
   public function __construct($values = array()) {
     parent::__construct($values);
@@ -63,7 +63,7 @@ public function __construct($values = array()) {
    * @param bool $customized
    *   (optional) Whether the string is customized or not. Defaults to TRUE.
    *
-   * @return Drupal\locale\TranslationString
+   * @return \Drupal\locale\TranslationString
    *   The called object.
    */
   public function setCustomized($customized = TRUE) {
@@ -72,28 +72,28 @@ public function setCustomized($customized = TRUE) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::isSource().
+   * Implements \Drupal\locale\StringInterface::isSource().
    */
   public function isSource() {
     return FALSE;
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::isTranslation().
+   * Implements \Drupal\locale\StringInterface::isTranslation().
   */
   public function isTranslation() {
     return !empty($this->lid) && !empty($this->language) && isset($this->translation);
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::getString().
+   * Implements \Drupal\locale\StringInterface::getString().
    */
   public function getString() {
     return isset($this->translation) ? $this->translation : '';
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::setString().
+   * Implements \Drupal\locale\StringInterface::setString().
    */
   public function setString($string) {
     $this->translation = $string;
@@ -101,14 +101,14 @@ public function setString($string) {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::isNew().
+   * Implements \Drupal\locale\StringInterface::isNew().
    */
   public function isNew() {
     return $this->is_new;
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::save().
+   * Implements \Drupal\locale\StringInterface::save().
    */
   public function save() {
     parent::save();
@@ -117,7 +117,7 @@ public function save() {
   }
 
   /**
-   * Implements Drupal\locale\StringInterface::delete().
+   * Implements \Drupal\locale\StringInterface::delete().
    */
   public function delete() {
     parent::delete();
diff --git a/core/modules/locale/lib/Drupal/locale/TranslationsStream.php b/core/modules/locale/lib/Drupal/locale/TranslationsStream.php
index 34ef38e..0949e98 100644
--- a/core/modules/locale/lib/Drupal/locale/TranslationsStream.php
+++ b/core/modules/locale/lib/Drupal/locale/TranslationsStream.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\TranslationStream.
+ * Definition of \Drupal\locale\TranslationStream.
  */
 
 namespace Drupal\locale;
@@ -17,14 +17,14 @@
 class TranslationsStream extends LocalStream {
 
   /**
-   * Implements Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
+   * Implements \Drupal\Core\StreamWrapper\LocalStream::getDirectoryPath()
    */
   function getDirectoryPath() {
     return config('locale.settings')->get('translation.path');
   }
 
   /**
-   * Implements Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
+   * Implements \Drupal\Core\StreamWrapper\StreamWrapperInterface::getExternalUrl().
    * @throws \LogicException PO files URL should not be public.
    */
   function getExternalUrl() {
diff --git a/core/modules/menu/lib/Drupal/menu/MenuFormController.php b/core/modules/menu/lib/Drupal/menu/MenuFormController.php
index a709d2e..05f1c39 100644
--- a/core/modules/menu/lib/Drupal/menu/MenuFormController.php
+++ b/core/modules/menu/lib/Drupal/menu/MenuFormController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Contains Drupal\menu\MenuFormController.
+ * Contains \Drupal\menu\MenuFormController.
  */
 
 namespace Drupal\menu;
@@ -18,7 +18,7 @@
 class MenuFormController extends EntityFormController implements EntityControllerInterface {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::form().
+   * Overrides \Drupal\Core\Entity\EntityFormController::form().
    */
   public function form(array $form, array &$form_state) {
     $menu = $this->entity;
@@ -93,7 +93,7 @@ public function form(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::actions().
+   * Overrides \Drupal\Core\Entity\EntityFormController::actions().
    */
   protected function actions(array $form, array &$form_state) {
     $actions = parent::actions($form, $form_state);
@@ -142,7 +142,7 @@ public function languageConfigurationSubmit(array &$form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::save().
+   * Overrides \Drupal\Core\Entity\EntityFormController::save().
    */
   public function save(array $form, array &$form_state) {
     $menu = $this->entity;
@@ -168,7 +168,7 @@ public function save(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::delete().
+   * Overrides \Drupal\Core\Entity\EntityFormController::delete().
    */
   public function delete(array $form, array &$form_state) {
     $menu = $this->entity;
diff --git a/core/modules/menu/lib/Drupal/menu/Tests/MenuNodeTest.php b/core/modules/menu/lib/Drupal/menu/Tests/MenuNodeTest.php
index 4a9c187..c6e4735 100644
--- a/core/modules/menu/lib/Drupal/menu/Tests/MenuNodeTest.php
+++ b/core/modules/menu/lib/Drupal/menu/Tests/MenuNodeTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\menu\Tests\MenuNodeTest.
+ * Definition of \Drupal\menu\Tests\MenuNodeTest.
  */
 
 namespace Drupal\menu\Tests;
diff --git a/core/modules/menu/lib/Drupal/menu/Tests/MenuTest.php b/core/modules/menu/lib/Drupal/menu/Tests/MenuTest.php
index b914837..0019f64 100644
--- a/core/modules/menu/lib/Drupal/menu/Tests/MenuTest.php
+++ b/core/modules/menu/lib/Drupal/menu/Tests/MenuTest.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\menu\Tests\MenuTest.
+ * Definition of \Drupal\menu\Tests\MenuTest.
  */
 
 namespace Drupal\menu\Tests;
diff --git a/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorageController.php b/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorageController.php
index 90fbdbb..9bae5d9 100644
--- a/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorageController.php
+++ b/core/modules/menu_link/lib/Drupal/menu_link/MenuLinkStorageController.php
@@ -17,7 +17,7 @@
 /**
  * Controller class for menu links.
  *
- * This extends the Drupal\entity\DatabaseStorageController class, adding
+ * This extends the \Drupal\entity\DatabaseStorageController class, adding
  * required special handling for menu_link entities.
  */
 class MenuLinkStorageController extends DatabaseStorageController implements MenuLinkStorageControllerInterface {
@@ -242,7 +242,7 @@ public function loadUpdatedCustomized(array $router_paths) {
     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));
     }
 
diff --git a/core/modules/node/lib/Drupal/node/NodeFormController.php b/core/modules/node/lib/Drupal/node/NodeFormController.php
index e55e056..971a6ef 100644
--- a/core/modules/node/lib/Drupal/node/NodeFormController.php
+++ b/core/modules/node/lib/Drupal/node/NodeFormController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\node\NodeFormController.
+ * Definition of \Drupal\node\NodeFormController.
  */
 
 namespace Drupal\node;
@@ -60,7 +60,7 @@ protected function prepareEntity() {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::form().
+   * Overrides \Drupal\Core\Entity\EntityFormController::form().
    */
   public function form(array $form, array &$form_state) {
     $node = $this->entity;
@@ -242,7 +242,7 @@ public function form(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::actions().
+   * Overrides \Drupal\Core\Entity\EntityFormController::actions().
    */
   protected function actions(array $form, array &$form_state) {
     $element = parent::actions($form, $form_state);
@@ -322,7 +322,7 @@ protected function actions(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::validate().
+   * Overrides \Drupal\Core\Entity\EntityFormController::validate().
    */
   public function validate(array $form, array &$form_state) {
     $node = $this->buildEntity($form, $form_state);
@@ -364,7 +364,7 @@ public function validate(array $form, array &$form_state) {
    * form state's entity with the current step's values before proceeding to the
    * next step.
    *
-   * Overrides Drupal\Core\Entity\EntityFormController::submit().
+   * Overrides \Drupal\Core\Entity\EntityFormController::submit().
    */
   public function submit(array $form, array &$form_state) {
     // Build the node object from the submitted values.
@@ -430,7 +430,7 @@ public function unpublish(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::save().
+   * Overrides \Drupal\Core\Entity\EntityFormController::save().
    */
   public function save(array $form, array &$form_state) {
     $node = $this->entity;
@@ -466,7 +466,7 @@ public function save(array $form, array &$form_state) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityFormController::delete().
+   * Overrides \Drupal\Core\Entity\EntityFormController::delete().
    */
   public function delete(array $form, array &$form_state) {
     $destination = array();
diff --git a/core/modules/node/lib/Drupal/node/NodeRenderController.php b/core/modules/node/lib/Drupal/node/NodeRenderController.php
index a58a96f..2b26509 100644
--- a/core/modules/node/lib/Drupal/node/NodeRenderController.php
+++ b/core/modules/node/lib/Drupal/node/NodeRenderController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\node\NodeRenderController.
+ * Definition of \Drupal\node\NodeRenderController.
  */
 
 namespace Drupal\node;
@@ -17,7 +17,7 @@
 class NodeRenderController extends EntityRenderController {
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::buildContent().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::buildContent().
    */
   public function buildContent(array $entities, array $displays, $view_mode, $langcode = NULL) {
     $return = array();
@@ -78,7 +78,7 @@ public function buildContent(array $entities, array $displays, $view_mode, $lang
   }
 
   /**
-   * Overrides Drupal\Core\Entity\EntityRenderController::alterBuild().
+   * Overrides \Drupal\Core\Entity\EntityRenderController::alterBuild().
    */
   protected function alterBuild(array &$build, EntityInterface $entity, EntityDisplay $display, $view_mode, $langcode = NULL) {
     parent::alterBuild($build, $entity, $display, $view_mode, $langcode);
diff --git a/core/modules/node/lib/Drupal/node/NodeStorageController.php b/core/modules/node/lib/Drupal/node/NodeStorageController.php
index 524036b..ee44b1f 100644
--- a/core/modules/node/lib/Drupal/node/NodeStorageController.php
+++ b/core/modules/node/lib/Drupal/node/NodeStorageController.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\node\NodeStorageController.
+ * Definition of \Drupal\node\NodeStorageController.
  */
 
 namespace Drupal\node;
@@ -13,13 +13,13 @@
 /**
  * Controller class for nodes.
  *
- * This extends the Drupal\Core\Entity\DatabaseStorageController class, adding
+ * This extends the \Drupal\Core\Entity\DatabaseStorageController class, adding
  * required special handling for node entities.
  */
 class NodeStorageController extends DatabaseStorageControllerNG {
 
   /**
-   * Overrides Drupal\Core\Entity\DatabaseStorageController::create().
+   * Overrides \Drupal\Core\Entity\DatabaseStorageController::create().
    */
   public function create(array $values) {
     // @todo Handle this through property defaults.
@@ -30,7 +30,7 @@ public function create(array $values) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\DatabaseStorageControllerNG::attachLoad().
+   * Overrides \Drupal\Core\Entity\DatabaseStorageControllerNG::attachLoad().
    */
   protected function attachLoad(&$queried_entities, $load_revision = FALSE) {
     $nodes = $this->mapFromStorageRecords($queried_entities, $load_revision);
@@ -72,7 +72,7 @@ protected function attachLoad(&$queried_entities, $load_revision = FALSE) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\DatabaseStorageController::invokeHook().
+   * Overrides \Drupal\Core\Entity\DatabaseStorageController::invokeHook().
    */
   protected function invokeHook($hook, EntityInterface $node) {
     $node = $node->getBCEntity();
@@ -107,7 +107,7 @@ protected function mapToDataStorageRecord(EntityInterface $entity, $langcode) {
   }
 
   /**
-   * Overrides Drupal\Core\Entity\DatabaseStorageController::postDelete().
+   * Overrides \Drupal\Core\Entity\DatabaseStorageController::postDelete().
    */
   protected function postDelete($nodes) {
     // Delete values from other tables also referencing this node.
