src/Entity/Contact.php line 7

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. class Contact {
  5.     /**
  6.      * @var int
  7.      */
  8.     private $id;
  9.     /**
  10.      * @var string|null
  11.      */
  12.     private $employeePosition;
  13.     /**
  14.      * @var \DateTime
  15.      */
  16.     private $createdAt;
  17.     /**
  18.      * @var \App\Entity\Person
  19.      */
  20.     private $person;
  21.     /**
  22.      * @var \App\Entity\Communication
  23.      */
  24.     private $communication;
  25.     /**
  26.      * @var \App\Entity\Media
  27.      */
  28.     private $contactProfilePicture;
  29.     /**
  30.      * Get id.
  31.      *
  32.      * @return int
  33.      */
  34.     public function getId() {
  35.         return $this->id;
  36.     }
  37.     /**
  38.      * Set employeePosition.
  39.      *
  40.      * @param string|null $employeePosition
  41.      *
  42.      * @return Contact
  43.      */
  44.     public function setEmployeePosition($employeePosition null) {
  45.         $this->employeePosition $employeePosition;
  46.         return $this;
  47.     }
  48.     /**
  49.      * Get employeePosition.
  50.      *
  51.      * @return string|null
  52.      */
  53.     public function getEmployeePosition() {
  54.         return $this->employeePosition;
  55.     }
  56.     /**
  57.      * Set createdAt.
  58.      *
  59.      * @param \DateTime $createdAt
  60.      *
  61.      * @return Contact
  62.      */
  63.     public function setCreatedAt($createdAt) {
  64.         $this->createdAt $createdAt;
  65.         return $this;
  66.     }
  67.     /**
  68.      * Get createdAt.
  69.      *
  70.      * @return \DateTime
  71.      */
  72.     public function getCreatedAt() {
  73.         return $this->createdAt;
  74.     }
  75.     /**
  76.      * Set person.
  77.      *
  78.      * @param \App\Entity\Person|null $person
  79.      *
  80.      * @return Contact
  81.      */
  82.     public function setPerson(\App\Entity\Person $person null) {
  83.         $this->person $person;
  84.         return $this;
  85.     }
  86.     /**
  87.      * Get person.
  88.      *
  89.      * @return \App\Entity\Person|null
  90.      */
  91.     public function getPerson() {
  92.         return $this->person;
  93.     }
  94.     /**
  95.      * Set communication.
  96.      *
  97.      * @param \App\Entity\Communication|null $communication
  98.      *
  99.      * @return Contact
  100.      */
  101.     public function setCommunication(\App\Entity\Communication $communication null) {
  102.         $this->communication $communication;
  103.         return $this;
  104.     }
  105.     /**
  106.      * Get communication.
  107.      *
  108.      * @return \App\Entity\Communication|null
  109.      */
  110.     public function getCommunication() {
  111.         return $this->communication;
  112.     }
  113.     /**
  114.      * Set contactProfilePicture.
  115.      *
  116.      * @param \App\Entity\Media|null $contactProfilePicture
  117.      *
  118.      * @return Contact
  119.      */
  120.     public function setContactProfilePicture(\App\Entity\Media $contactProfilePicture null) {
  121.         $this->contactProfilePicture $contactProfilePicture;
  122.         return $this;
  123.     }
  124.     /**
  125.      * Get contactProfilePicture.
  126.      *
  127.      * @return \App\Entity\Media|null
  128.      */
  129.     public function getContactProfilePicture() {
  130.         return $this->contactProfilePicture;
  131.     }
  132. }