src/Entity/GameCategory.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class GameCategory
  5. {
  6.     /**
  7.      * @var int
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var string
  12.      */
  13.     private $categoryName;
  14.     /**
  15.      * @var string
  16.      */
  17.     private $categoryLetter;
  18.     /**
  19.      * @var bool
  20.      */
  21.     private $isActive;    
  22.     /**
  23.      * Get id.
  24.      *
  25.      * @return int
  26.      */
  27.     public function getId()
  28.     {
  29.         return $this->id;
  30.     }
  31.     /**
  32.      * Set categoryName.
  33.      *
  34.      * @param string $categoryName
  35.      *
  36.      * @return GameCategory
  37.      */
  38.     public function setName($categoryName)
  39.     {
  40.         $this->categoryName $categoryName;
  41.         return $this;
  42.     }
  43.     /**
  44.      * Get categoryName.
  45.      *
  46.      * @return string
  47.      */
  48.     public function getCategoryName()
  49.     {
  50.         return $this->categoryName;
  51.     }
  52.     /**
  53.      * Set categoryLetter.
  54.      *
  55.      * @param string $categoryLetter
  56.      *
  57.      * @return GameCategory
  58.      */
  59.     public function setCategoryLetter($categoryLetter)
  60.     {
  61.         $this->categoryLetter $categoryLetter;
  62.         return $this;
  63.     }
  64.     /**
  65.      * Get categoryLetter.
  66.      *
  67.      * @return string
  68.      */
  69.     public function getCategoryLetter()
  70.     {
  71.         return $this->categoryLetter;
  72.     }
  73.     /**
  74.      * Set isActive.
  75.      *
  76.      * @param bool $isActive
  77.      *
  78.      * @return GameCategory
  79.      */
  80.     public function setIsActive($isActive)
  81.     {
  82.         $this->isActive $isActive;
  83.         return $this;
  84.     }
  85.     /**
  86.      * Get isActive.
  87.      *
  88.      * @return bool
  89.      */
  90.     public function getIsActive()
  91.     {
  92.         return $this->isActive;
  93.     }
  94. }