vendor/shopware/storefront/Page/MetaInformation.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Shopware\Storefront\Page;
  3. use Shopware\Core\Framework\Struct\Struct;
  4. class MetaInformation extends Struct
  5. {
  6.     /**
  7.      * @var string
  8.      */
  9.     protected $metaTitle '';
  10.     /**
  11.      * @var string
  12.      */
  13.     protected $metaDescription '';
  14.     /**
  15.      * @var string
  16.      */
  17.     protected $metaKeywords '';
  18.     /**
  19.      * @var string
  20.      */
  21.     protected $author '';
  22.     /**
  23.      * @var string
  24.      */
  25.     protected $xmlLang '';
  26.     /**
  27.      * @var string
  28.      */
  29.     protected $copyrightYear '';
  30.     /**
  31.      * @var string
  32.      */
  33.     protected $revisit '';
  34.     /**
  35.      * @var string
  36.      */
  37.     protected $robots '';
  38.     public function getMetaTitle(): string
  39.     {
  40.         return $this->metaTitle;
  41.     }
  42.     public function setMetaTitle(string $metaTitle): void
  43.     {
  44.         $this->metaTitle $metaTitle;
  45.     }
  46.     public function getMetaDescription(): string
  47.     {
  48.         return $this->metaDescription;
  49.     }
  50.     public function setMetaDescription(string $metaDescription): void
  51.     {
  52.         $this->metaDescription $metaDescription;
  53.     }
  54.     public function getMetaKeywords(): string
  55.     {
  56.         return $this->metaKeywords;
  57.     }
  58.     public function setMetaKeywords(string $metaKeywords): void
  59.     {
  60.         $this->metaKeywords $metaKeywords;
  61.     }
  62.     public function getAuthor(): string
  63.     {
  64.         return $this->author;
  65.     }
  66.     public function setAuthor(string $author): void
  67.     {
  68.         $this->author $author;
  69.     }
  70.     public function getXmlLang(): string
  71.     {
  72.         return $this->xmlLang;
  73.     }
  74.     public function setXmlLang(string $xmlLang): void
  75.     {
  76.         $this->xmlLang $xmlLang;
  77.     }
  78.     public function getCopyrightYear(): string
  79.     {
  80.         return $this->copyrightYear;
  81.     }
  82.     public function setCopyrightYear(string $copyrightYear): void
  83.     {
  84.         $this->copyrightYear $copyrightYear;
  85.     }
  86.     public function getRevisit(): string
  87.     {
  88.         return $this->revisit;
  89.     }
  90.     public function setRevisit(string $revisit): void
  91.     {
  92.         $this->revisit $revisit;
  93.     }
  94.     public function getRobots(): string
  95.     {
  96.         return $this->robots;
  97.     }
  98.     public function setRobots(string $robots): void
  99.     {
  100.         $this->robots $robots;
  101.     }
  102. }