src/Entity/CommunicationEntry.php line 7

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