From ba89738ceafa41021419bea13fad186bbdc8f879 Mon Sep 17 00:00:00 2001
From: Jennifer Hodgdon <yahgrp@poplarware.com>
Date: Mon, 11 Feb 2013 09:39:12 -0800
Subject: [PATCH] =?UTF-8?q?Issue=20#1852288=20by=20underq,=20aaronott,=20Y?=
 =?UTF-8?q?esCT,=20heyrocker,=20G=C3=A1bor=20Hojtsy:=20Update=20documentat?=
 =?UTF-8?q?ion=20to=20namespace=20standards?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../Drupal/locale/StringStorageInterface.php  | 38 +++++++++----------
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/core/modules/locale/lib/Drupal/locale/StringStorageInterface.php b/core/modules/locale/lib/Drupal/locale/StringStorageInterface.php
index d02774fb9e90..2f3c1c3b5b22 100644
--- a/core/modules/locale/lib/Drupal/locale/StringStorageInterface.php
+++ b/core/modules/locale/lib/Drupal/locale/StringStorageInterface.php
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Definition of Drupal\locale\StringStorageInterface.
+ * Contains \Drupal\locale\StringStorageInterface.
  */
 
 namespace Drupal\locale;
@@ -30,15 +30,13 @@ interface StringStorageInterface {
    *   - 'pager limit': Use pager and set this limit value.
    *
    * @return array
-   *   Array of Drupal\locale\StringInterface objects matching the conditions.
+   *   Array of \Drupal\locale\StringInterface objects matching the conditions.
    */
   public function getStrings(array $conditions = array(), array $options = array());
 
   /**
    * Loads multiple string translation objects.
    *
-   * @see Drupal\locale\StringStorageInterface::getStrings()
-   *
    * @param array $conditions
    *   (optional) Array with conditions that will be used to filter the strings
    *   returned and may include all of the conditions defined by getStrings().
@@ -47,15 +45,15 @@ public function getStrings(array $conditions = array(), array $options = array()
    *   any of the options defined by getStrings().
    *
    * @return array
-   *   Array of Drupal\locale\StringInterface objects matching the conditions.
-  */
+   *   Array of \Drupal\locale\StringInterface objects matching the conditions.
+   *
+   * @see \Drupal\locale\StringStorageInterface::getStrings()
+   */
   public function getTranslations(array $conditions = array(), array $options = array());
 
   /**
    * Loads string location information.
    *
-   * @see Drupal\locale\StringStorageInterface::getStrings()
-   *
    * @param array $conditions
    *   (optional) Array with conditions to filter the locations that may be any
    *   of the follwing elements:
@@ -64,7 +62,9 @@ public function getTranslations(array $conditions = array(), array $options = ar
    *   - 'name', The location name.
    *
    * @return array
-   *   Array of location objects matching the conditions.
+   *   Array of \Drupal\locale\StringInterface objects matching the conditions.
+   *
+   * @see \Drupal\locale\StringStorageInterface::getStrings()
    */
   public function getLocations(array $conditions = array());
 
@@ -79,7 +79,7 @@ public function getLocations(array $conditions = array());
    *   (optional) Array with conditions that will be used to filter the strings
    *   returned and may include all of the conditions defined by getStrings().
    *
-   * @return Drupal\locale\SourceString|null
+   * @return \Drupal\locale\SourceString|null
    *   Minimal TranslationString object if found, NULL otherwise.
    */
   public function findString(array $conditions);
@@ -95,7 +95,7 @@ public function findString(array $conditions);
    *   (optional) Array with conditions that will be used to filter the strings
    *   returned and may include all of the conditions defined by getStrings().
    *
-   * @return Drupal\locale\TranslationString|null
+   * @return \Drupal\locale\TranslationString|null
    *   Minimal TranslationString object if found, NULL otherwise.
    */
   public function findTranslation(array $conditions);
@@ -103,13 +103,13 @@ public function findTranslation(array $conditions);
   /**
    * Save string object to storage.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    *
-   * @return Drupal\locale\StringStorageInterface
+   * @return \Drupal\locale\StringStorageInterface
    *   The called object.
    *
-   * @throws Drupal\locale\StringStorageException
+   * @throws \Drupal\locale\StringStorageException
    *   In case of failures, an exception is thrown.
    */
   public function save($string);
@@ -117,13 +117,13 @@ public function save($string);
   /**
    * Delete string from storage.
    *
-   * @param Drupal\locale\StringInterface $string
+   * @param \Drupal\locale\StringInterface $string
    *   The string object.
    *
-   * @return Drupal\locale\StringStorageInterface
+   * @return \Drupal\locale\StringStorageInterface
    *   The called object.
    *
-   * @throws Drupal\locale\StringStorageException
+   * @throws \Drupal\locale\StringStorageException
    *   In case of failures, an exception is thrown.
    */
   public function delete($string);
@@ -166,7 +166,7 @@ public function countTranslations();
    * @param array $values
    *   (optional) Array with initial values. Defaults to empty array.
    *
-   * @return Drupal\locale\SourceString
+   * @return \Drupal\locale\SourceString
    *   New source string object.
    */
   public function createString($values = array());
@@ -177,7 +177,7 @@ public function createString($values = array());
    * @param array $values
    *   (optional) Array with initial values. Defaults to empty array.
    *
-   * @return Drupal\locale\TranslationString
+   * @return \Drupal\locale\TranslationString
    *   New string translation object.
    */
   public function createTranslation($values = array());
-- 
GitLab