src/Entity/GalleryHasMedia.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class GalleryHasMedia {
  5.     /**
  6.      * @var integer
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var \App\Entity\Media
  11.      */
  12.     private $media;
  13.     /**
  14.      * @var \App\Entity\Gallery
  15.      */
  16.     private $gallery;
  17.     /**
  18.      * @var integer
  19.      */
  20.     private $position;
  21.     /**
  22.      * @var \DateTime
  23.      */
  24.     private $updatedAt;
  25.     /**
  26.      * @var \DateTime
  27.      */
  28.     private $createdAt;
  29.     /**
  30.      * @var boolean
  31.      */
  32.     private bool $enabled false;
  33.     /**
  34.      * Get id
  35.      *
  36.      * @return integer
  37.      */
  38.     public function getId() {
  39.         return $this->id;
  40.     }
  41.     public function __toString() {
  42.         return $this->getGallery() . ' | ' $this->getMedia();
  43.     }
  44.     public function setEnabled($enabled) {
  45.         $this->enabled $enabled;
  46.     }
  47.     public function getEnabled() {
  48.         return $this->enabled;
  49.     }
  50.     public function setGallery($gallery) {
  51.         $this->gallery $gallery;
  52.     }
  53.     public function getGallery() {
  54.         return $this->gallery;
  55.     }
  56.     public function setMedia($media) {
  57.         $this->media $media;
  58.     }
  59.     public function getMedia() {
  60.         return $this->media;
  61.     }
  62.     public function setPosition($position) {
  63.         $this->position $position;
  64.     }
  65.     public function getPosition() {
  66.         return $this->position;
  67.     }
  68.     public function setUpdatedAt($updatedAt) {
  69.         $this->updatedAt $updatedAt;
  70.     }
  71.     public function getUpdatedAt() {
  72.         return $this->updatedAt;
  73.     }
  74.     public function setCreatedAt($createdAt) {
  75.         $this->createdAt $createdAt;
  76.     }
  77.     public function getCreatedAt() {
  78.         return $this->createdAt;
  79.     }
  80. }