Security update for Core, with self-updated composer
[yaffs-website] / web / core / lib / Drupal / Component / Gettext / PoItem.php
index 1f05bbd59dd64f3f659f71e8fff7446a3670ce9e..6c70990851d00b5e98baa69a37cc29962a630cf1 100644 (file)
@@ -13,7 +13,7 @@ class PoItem {
   /**
    * The language code this translation is in.
    *
-   * @car string
+   * @var string
    */
   private $_langcode;
 
@@ -27,7 +27,8 @@ class PoItem {
   /**
    * The source string or array of strings if it has plurals.
    *
-   * @var string or array
+   * @var string|array
+   *
    * @see $_plural
    */
   private $_source;
@@ -49,7 +50,7 @@ class PoItem {
   /**
    * The translation string or array of strings if it has plurals.
    *
-   * @var string or array
+   * @var string|array
    * @see $_plural
    */
   private $_translation;
@@ -104,7 +105,7 @@ class PoItem {
    * Set the source string or the array of strings if the translation has
    * plurals.
    *
-   * @param string or array $source
+   * @param string|array $source
    */
   public function setSource($source) {
     $this->_source = $source;
@@ -124,7 +125,7 @@ class PoItem {
    * Set the translation string or the array of strings if the translation has
    * plurals.
    *
-   * @param string or array $translation
+   * @param string|array $translation
    */
   public function setTranslation($translation) {
     $this->_translation = $translation;