vendor/sulu/sulu/src/Sulu/Bundle/CategoryBundle/Entity/CategoryMeta.php line 17

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of Sulu.
  4.  *
  5.  * (c) Sulu GmbH
  6.  *
  7.  * This source file is subject to the MIT license that is bundled
  8.  * with this source code in the file LICENSE.
  9.  */
  10. namespace Sulu\Bundle\CategoryBundle\Entity;
  11. /**
  12.  * CategoryMeta.
  13.  */
  14. class CategoryMeta implements CategoryMetaInterface
  15. {
  16.     /**
  17.      * @var string
  18.      */
  19.     protected $key;
  20.     /**
  21.      * @var string
  22.      */
  23.     protected $value;
  24.     /**
  25.      * @var string
  26.      */
  27.     protected $locale;
  28.     /**
  29.      * @var int
  30.      */
  31.     protected $id;
  32.     /**
  33.      * @var CategoryInterface
  34.      */
  35.     protected $category;
  36.     public function setKey($key)
  37.     {
  38.         $this->key $key;
  39.         return $this;
  40.     }
  41.     public function getKey()
  42.     {
  43.         return $this->key;
  44.     }
  45.     public function setValue($value)
  46.     {
  47.         $this->value $value;
  48.         return $this;
  49.     }
  50.     public function getValue()
  51.     {
  52.         return $this->value;
  53.     }
  54.     public function setLocale($locale)
  55.     {
  56.         $this->locale $locale;
  57.         return $this;
  58.     }
  59.     public function getLocale()
  60.     {
  61.         return $this->locale;
  62.     }
  63.     public function getId()
  64.     {
  65.         return $this->id;
  66.     }
  67.     public function setId($id)
  68.     {
  69.         $this->id $id;
  70.         return $this;
  71.     }
  72.     public function setCategory(CategoryInterface $category)
  73.     {
  74.         $this->category $category;
  75.         return $this;
  76.     }
  77.     public function getCategory()
  78.     {
  79.         return $this->category;
  80.     }
  81. }