public function PluralTranslation::get in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Annotation/PluralTranslation.php \Drupal\Core\Annotation\PluralTranslation::get()
Gets the value of an annotation.
Overrides AnnotationInterface::get
File
- core/
lib/ Drupal/ Core/ Annotation/ PluralTranslation.php, line 97
Class
- PluralTranslation
- Defines an annotation object for strings that require plural forms.
Namespace
Drupal\Core\AnnotationCode
public function get() {
return [
'singular' => $this->singular,
'plural' => $this->plural,
'context' => $this->context,
];
}