src/Entity/Icon.php line 5

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