src/Entity/TaxDeposit.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\TaxDeposit\ContactPerson;
  4. use App\Repository\TaxDepositRepository;
  5. use Doctrine\Common\Collections\ArrayCollection;
  6. use Doctrine\Common\Collections\Collection;
  7. use Doctrine\ORM\Mapping as ORM;
  8. /**
  9.  * @ORM\Entity(repositoryClass=TaxDepositRepository::class)
  10.  */
  11. class TaxDeposit
  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="boolean")
  25.      */
  26.     private $enabled;
  27.     /**
  28.      * @ORM\Column(type="text")
  29.      */
  30.     private $address;
  31.     /**
  32.      * @ORM\Column(type="string", length=255)
  33.      */
  34.     private $managerName;
  35.     /**
  36.      * @ORM\Column(type="string", length=255)
  37.      */
  38.     private $managerLastName;
  39.     /**
  40.      * @ORM\Column(type="string", length=255)
  41.      */
  42.     private $managerSecondLastName;
  43.     /**
  44.      * @ORM\Column(type="string", length=255)
  45.      */
  46.     private $managerPhone;
  47.     /**
  48.      * @ORM\Column(type="string", length=255)
  49.      */
  50.     private $managerEmail;
  51.     /**
  52.      * @ORM\Column(type="string", length=255)
  53.      */
  54.     private $rfc;
  55.     /**
  56.      * @ORM\OneToMany(targetEntity=ContactPerson::class, mappedBy="taxDeposit", cascade={"persist","remove"})
  57.      */
  58.     private $contactPeople;
  59.     public function __construct()
  60.     {
  61.         $this->contactPeople = new ArrayCollection();
  62.     }
  63.     public function getId(): ?int
  64.     {
  65.         return $this->id;
  66.     }
  67.     public function getName(): ?string
  68.     {
  69.         return $this->name;
  70.     }
  71.     public function setName(string $name): self
  72.     {
  73.         $this->name $name;
  74.         return $this;
  75.     }
  76.     public function isEnabled(): ?bool
  77.     {
  78.         return $this->enabled;
  79.     }
  80.     public function setEnabled(bool $enabled): self
  81.     {
  82.         $this->enabled $enabled;
  83.         return $this;
  84.     }
  85.     public function getAddress(): ?string
  86.     {
  87.         return $this->address;
  88.     }
  89.     public function setAddress(string $address): self
  90.     {
  91.         $this->address $address;
  92.         return $this;
  93.     }
  94.     public function getManagerName(): ?string
  95.     {
  96.         return $this->managerName;
  97.     }
  98.     public function setManagerName(string $managerName): self
  99.     {
  100.         $this->managerName $managerName;
  101.         return $this;
  102.     }
  103.     public function getManagerLastName(): ?string
  104.     {
  105.         return $this->managerLastName;
  106.     }
  107.     public function setManagerLastName(string $managerLastName): self
  108.     {
  109.         $this->managerLastName $managerLastName;
  110.         return $this;
  111.     }
  112.     public function getManagerSecondLastName(): ?string
  113.     {
  114.         return $this->managerSecondLastName;
  115.     }
  116.     public function setManagerSecondLastName(string $managerSecondLastName): self
  117.     {
  118.         $this->managerSecondLastName $managerSecondLastName;
  119.         return $this;
  120.     }
  121.     public function getManagerPhone(): ?string
  122.     {
  123.         return $this->managerPhone;
  124.     }
  125.     public function setManagerPhone(string $managerPhone): self
  126.     {
  127.         $this->managerPhone $managerPhone;
  128.         return $this;
  129.     }
  130.     public function getManagerEmail(): ?string
  131.     {
  132.         return $this->managerEmail;
  133.     }
  134.     public function setManagerEmail(string $managerEmail): self
  135.     {
  136.         $this->managerEmail $managerEmail;
  137.         return $this;
  138.     }
  139.     public function getRfc(): ?string
  140.     {
  141.         return $this->rfc;
  142.     }
  143.     public function setRfc(string $rfc): self
  144.     {
  145.         $this->rfc $rfc;
  146.         return $this;
  147.     }
  148.     /**
  149.      * @return Collection<int, ContactPerson>
  150.      */
  151.     public function getContactPeople(): Collection
  152.     {
  153.         return $this->contactPeople;
  154.     }
  155.     public function addContactPerson(ContactPerson $contactPerson): self
  156.     {
  157.         if (!$this->contactPeople->contains($contactPerson)) {
  158.             $this->contactPeople[] = $contactPerson;
  159.             $contactPerson->setTaxDeposit($this);
  160.         }
  161.         return $this;
  162.     }
  163.     public function removeContactPerson(ContactPerson $contactPerson): self
  164.     {
  165.         if ($this->contactPeople->removeElement($contactPerson)) {
  166.             // set the owning side to null (unless already changed)
  167.             if ($contactPerson->getTaxDeposit() === $this) {
  168.                 $contactPerson->setTaxDeposit(null);
  169.             }
  170.         }
  171.         return $this;
  172.     }
  173. }