src/Entity/OtherProvider.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\OtherProvider\ContactPerson;
  4. use App\Repository\OtherProviderRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=OtherProviderRepository::class)
  10.  */
  11. class OtherProvider
  12. {
  13.     /**
  14.      * @ORM\Id
  15.      * @ORM\GeneratedValue
  16.      * @ORM\Column(type="integer")
  17.      */
  18.     private $id;
  19.     /**
  20.      * @ORM\Column(type="string", length=255)
  21.      */
  22.     private $name;
  23.     /**
  24.      * @ORM\Column(type="text")
  25.      */
  26.     private $address;
  27.     /**
  28.      * @ORM\Column(type="string", length=255, nullable=true)
  29.      */
  30.     private $website;
  31.     /**
  32.      * @ORM\OneToMany(targetEntity=ContactPerson::class, mappedBy="otherProvider", cascade={"persist","remove"})
  33.      */
  34.     private $contactPeople;
  35.     /**
  36.      * @ORM\Column(type="boolean")
  37.      */
  38.     private $enabled;
  39.     public function __construct()
  40.     {
  41.         $this->contactPeople = new ArrayCollection();
  42.     }
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getName(): ?string
  48.     {
  49.         return $this->name;
  50.     }
  51.     public function setName(string $name): self
  52.     {
  53.         $this->name $name;
  54.         return $this;
  55.     }
  56.     public function getAddress(): ?string
  57.     {
  58.         return $this->address;
  59.     }
  60.     public function setAddress(string $address): self
  61.     {
  62.         $this->address $address;
  63.         return $this;
  64.     }
  65.     public function getWebsite(): ?string
  66.     {
  67.         return $this->website;
  68.     }
  69.     public function setWebsite(?string $website): self
  70.     {
  71.         $this->website $website;
  72.         return $this;
  73.     }
  74.     /**
  75.      * @return Collection<int, ContactPerson>
  76.      */
  77.     public function getContactPeople(): Collection
  78.     {
  79.         return $this->contactPeople;
  80.     }
  81.     public function addContactPerson(ContactPerson $contactPerson): self
  82.     {
  83.         if (!$this->contactPeople->contains($contactPerson)) {
  84.             $this->contactPeople[] = $contactPerson;
  85.             $contactPerson->setOtherProvider($this);
  86.         }
  87.         return $this;
  88.     }
  89.     public function removeContactPerson(ContactPerson $contactPerson): self
  90.     {
  91.         if ($this->contactPeople->removeElement($contactPerson)) {
  92.             // set the owning side to null (unless already changed)
  93.             if ($contactPerson->getOtherProvider() === $this) {
  94.                 $contactPerson->setOtherProvider(null);
  95.             }
  96.         }
  97.         return $this;
  98.     }
  99.     public function isEnabled(): ?bool
  100.     {
  101.         return $this->enabled;
  102.     }
  103.     public function setEnabled(bool $enabled): self
  104.     {
  105.         $this->enabled $enabled;
  106.         return $this;
  107.     }
  108. }