Issue #2613976 by Oleksiy: Remove redundant "See..." that duplicates "@see..." in protected method documentation
parent
eb627bd667
commit
d23edad556
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue