src/Entity/ContactGalleryEntry.php line 7

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