Issue #2613976 by Oleksiy: Remove redundant "See..." that duplicates "@see..." in protected method documentation

8.1.x
xjm 2015-11-22 18:22:56 -06:00
parent eb627bd667
commit d23edad556
1 changed files with 1 additions and 5 deletions

View File

@ -77,8 +77,7 @@ trait StringTranslationTrait {
/**
* Formats a string containing a count of items.
*
* See the \Drupal\Core\StringTranslation\TranslationInterface::formatPlural()
* documentation for details.
* @see \Drupal\Core\StringTranslation\TranslationInterface::formatPlural()
*/
protected function formatPlural($count, $singular, $plural, array $args = array(), array $options = array()) {
return $this->getStringTranslation()->formatPlural($count, $singular, $plural, $args, $options);
@ -87,9 +86,6 @@ trait StringTranslationTrait {
/**
* Returns the number of plurals supported by a given language.
*
* See the \Drupal\locale\PluralFormulaInterface::getNumberOfPlurals()
* documentation for details.
*
* @see \Drupal\locale\PluralFormulaInterface::getNumberOfPlurals()
*/
protected function getNumberOfPlurals($langcode = NULL) {