src/Entity/MediaGalleryCategory.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class MediaGalleryCategory
  5. {
  6.     /**
  7.      * @var int
  8.      */
  9.     private $id;
  10.     /**
  11.      * @var string
  12.      */
  13.     private $category;
  14.     /**
  15.      * Get id.
  16.      *
  17.      * @return int
  18.      */
  19.     public function getId()
  20.     {
  21.         return $this->id;
  22.     }
  23.     /**
  24.      * Set category.
  25.      *
  26.      * @param string $category
  27.      *
  28.      * @return MediaGalleryCategory
  29.      */
  30.     public function setCategory($category)
  31.     {
  32.         $this->category $category;
  33.         return $this;
  34.     }
  35.     /**
  36.      * Get category.
  37.      *
  38.      * @return string
  39.      */
  40.     public function getCategory()
  41.     {
  42.         return $this->category;
  43.     }
  44. }