src/Entity/IconCategory.php line 5

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. class IconCategory
  4. {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string
  11.      */
  12.     private $categoryName;
  13.     /**
  14.      * @var integer
  15.      */
  16.     private $position;
  17.     /**
  18.      * Get id
  19.      *
  20.      * @return integer
  21.      */
  22.     public function getId()
  23.     {
  24.         return $this->id;
  25.     }
  26.     /**
  27.      * Set categoryName
  28.      *
  29.      * @param string $categoryName
  30.      *
  31.      * @return IconCategory
  32.      */
  33.     public function setCategoryName($categoryName)
  34.     {
  35.         $this->categoryName $categoryName;
  36.         return $this;
  37.     }
  38.     /**
  39.      * Get categoryName
  40.      *
  41.      * @return string
  42.      */
  43.     public function getCategoryName()
  44.     {
  45.         return $this->categoryName;
  46.     }
  47.     /**
  48.      * Set position
  49.      *
  50.      * @param integer $position
  51.      *
  52.      * @return FaqCategory
  53.      */
  54.     public function setPosition($position)
  55.     {
  56.         $this->position $position;
  57.         return $this;
  58.     }
  59.     /**
  60.      * Get position
  61.      *
  62.      * @return integer
  63.      */
  64.     public function getPosition()
  65.     {
  66.         return $this->position;
  67.     }
  68. }