src/Entity/Customer.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\CustomerRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use App\Entity\User;
  8. use Gedmo\Mapping\Annotation as Gedmo;
  9. /**
  10.  * @ORM\Entity(repositoryClass=CustomerRepository::class)
  11.  */
  12. class Customer extends User
  13. {
  14.     /**
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $cin;
  18.     /**
  19.      * @ORM\Column(type="string", length=255)
  20.      */
  21.     private $phone;
  22.     /**
  23.      * @ORM\Column(type="string", length=255, nullable=true)
  24.      */
  25.     private $customer_code;
  26.     /**
  27.      * @ORM\OneToMany(targetEntity=Participant::class, mappedBy="customer")
  28.      */
  29.     private $participant;
  30.     public function __construct()
  31.     {
  32.         $this->participant = new ArrayCollection();
  33.     }
  34.     public function getCin(): ?int
  35.     {
  36.         return $this->cin;
  37.     }
  38.     public function setCin(int $cin): self
  39.     {
  40.         $this->cin $cin;
  41.         return $this;
  42.     }
  43.     public function getPhone(): ?string
  44.     {
  45.         return $this->phone;
  46.     }
  47.     public function setPhone(string $phone): self
  48.     {
  49.         $this->phone $phone;
  50.         return $this;
  51.     }
  52.     public function getCustomerCode(): ?string
  53.     {
  54.         return $this->customer_code;
  55.     }
  56.     public function setCustomerCode(string $customer_code): self
  57.     {
  58.         $this->customer_code $customer_code;
  59.         return $this;
  60.     }
  61.     
  62.     /**
  63.      * @return Collection<int, Participant>
  64.      */
  65.     public function getParticipant(): Collection
  66.     {
  67.         return $this->participant;
  68.     }
  69.     public function addParticipant(Participant $participant): self
  70.     {
  71.         if (!$this->participant->contains($participant)) {
  72.             $this->participant[] = $participant;
  73.             $participant->setCustomer($this);
  74.         }
  75.         return $this;
  76.     }
  77.     public function removeParticipant(Participant $participant): self
  78.     {
  79.         if ($this->participant->removeElement($participant)) {
  80.             // set the owning side to null (unless already changed)
  81.             if ($participant->getCustomer() === $this) {
  82.                 $participant->setCustomer(null);
  83.             }
  84.         }
  85.         return $this;
  86.     }
  87. }