diff --git a/core/modules/locale/lib/Drupal/locale/StringStorageInterface.php b/core/modules/locale/lib/Drupal/locale/StringStorageInterface.php index d02774f..0d7dd5d 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; @@ -37,8 +37,6 @@ 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(). @@ -48,14 +46,14 @@ public function getStrings(array $conditions = array(), array $options = array() * * @return array * 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: @@ -65,6 +63,8 @@ public function getTranslations(array $conditions = array(), array $options = ar * * @return array * Array of location objects matching the conditions. + * + * @see \Drupal\locale\StringStorageInterface::getStrings() */ public function getLocations(array $conditions = array()); @@ -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());