src/Entity/Address.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AddressRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Gedmo\Blameable\Traits\BlameableEntity;
  8. use Gedmo\Timestampable\Traits\TimestampableEntity;
  9. use Symfony\Component\Serializer\Annotation\Groups;
  10. use Symfony\Component\Validator\Constraints as Assert;
  11. #[ORM\Entity(repositoryClassAddressRepository::class)]
  12. class Address
  13. {
  14.     use BlameableEntity//Hook blameable behaviour. Updates createdBy, updatedBy fields
  15.     use TimestampableEntity//Hook timestampable behaviour. Updates createdAt, updatedAt fields 
  16.     #[ORM\Id]
  17.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  18.     #[ORM\Column]
  19.     private ?int $id null;
  20.     #[ORM\ManyToOne(inversedBy'addresses')]
  21.     #[ORM\JoinColumn(nullabletrue)]
  22.     private ?User $user null;
  23.     #[ORM\OneToMany(mappedBy'address'targetEntityProducer::class)]
  24.     private Collection $producers;
  25.     #[ORM\Column(length511nullabletrue)]
  26.     #[Assert\Length(max511)]
  27.     #[Groups(['json'])]
  28.     private ?string $addressee null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     #[Assert\Length(max255)]
  31.     #[Groups(['json'])]
  32.     private ?string $name null;
  33.     #[ORM\Column(length511)]
  34.     #[Assert\NotNull()]
  35.     #[Assert\Length(max511)]
  36.     #[Groups(['json'])]
  37.     private ?string $address null;
  38.     #[ORM\Column(length10)]
  39.     #[Assert\NotNull()]
  40.     #[Assert\Length(max10)]
  41.     #[Groups(['json'])]
  42.     private ?string $postalCode null;
  43.     #[ORM\Column(length50)]
  44.     #[Assert\NotNull()]
  45.     #[Assert\Length(max50)]
  46.     #[Groups(['json'])]
  47.     private ?string $city null;
  48.     #[ORM\ManyToOne(inversedBy'addresses')]
  49.     #[ORM\JoinColumn(nullablefalse)]
  50.     #[Assert\NotNull()]
  51.     #[Groups(['json'])]
  52.     private ?Country $country null;
  53.     #[ORM\Column]
  54.     #[Groups(['json'])]
  55.     private ?bool $isDefaultAddress false;
  56.     #[ORM\Column]
  57.     #[Groups(['json'])]
  58.     private ?bool $isBillingAddress false;
  59.     #[ORM\ManyToOne]
  60.     #[Assert\NotNull()]
  61.     #[Groups(['json'])]
  62.     private ?Province $province null;
  63.     #[ORM\OneToMany(mappedBy'address'targetEntitySharedAddress::class)]
  64.     private Collection $sharedAddresses;
  65.     #[ORM\OneToMany(mappedBy'address'targetEntityBuyingGroup::class)]
  66.     private Collection $buyingGroups;
  67.     public function __toString()
  68.     {
  69.         return $this->name;
  70.     }
  71.     public function __construct()
  72.     {
  73.         $this->producers = new ArrayCollection();
  74.         $this->sharedAddresses = new ArrayCollection();
  75.         $this->buyingGroups = new ArrayCollection();
  76.     }
  77.     public function getId(): ?int
  78.     {
  79.         return $this->id;
  80.     }
  81.     public function getUser(): ?User
  82.     {
  83.         return $this->user;
  84.     }
  85.     public function setUser(?User $user): self
  86.     {
  87.         $this->user $user;
  88.         return $this;
  89.     }
  90.     /**
  91.      * @return Collection<int, Producer>
  92.      */
  93.     public function getProducers(): Collection
  94.     {
  95.         return $this->producers;
  96.     }
  97.     public function addProducer(Producer $producer): self
  98.     {
  99.         if (!$this->producers->contains($producer)) {
  100.             $this->producers->add($producer);
  101.             $producer->setAddress($this);
  102.         }
  103.         return $this;
  104.     }
  105.     public function removeProducer(Producer $producer): self
  106.     {
  107.         if ($this->producers->removeElement($producer)) {
  108.             // set the owning side to null (unless already changed)
  109.             if ($producer->getAddress() === $this) {
  110.                 $producer->setAddress(null);
  111.             }
  112.         }
  113.         return $this;
  114.     }
  115.     public function getAddressee(): ?string
  116.     {
  117.         return $this->addressee;
  118.     }
  119.     public function setAddressee(?string $addressee): self
  120.     {
  121.         $this->addressee $addressee;
  122.         return $this;
  123.     }
  124.     public function getName(): ?string
  125.     {
  126.         return $this->name;
  127.     }
  128.     public function setName(?string $name): self
  129.     {
  130.         $this->name $name;
  131.         return $this;
  132.     }
  133.     public function getAddress(): ?string
  134.     {
  135.         return $this->address;
  136.     }
  137.     public function setAddress(?string $address): self
  138.     {
  139.         $this->address $address;
  140.         return $this;
  141.     }
  142.     public function getPostalCode(): ?string
  143.     {
  144.         return $this->postalCode;
  145.     }
  146.     public function setPostalCode(?string $postalCode): self
  147.     {
  148.         $this->postalCode $postalCode;
  149.         return $this;
  150.     }
  151.     public function getCity(): ?string
  152.     {
  153.         return $this->city;
  154.     }
  155.     public function setCity(?string $city): self
  156.     {
  157.         $this->city $city;
  158.         return $this;
  159.     }
  160.     public function getCountry(): ?Country
  161.     {
  162.         return $this->country;
  163.     }
  164.     public function setCountry(?Country $country): self
  165.     {
  166.         $this->country $country;
  167.         return $this;
  168.     }
  169.     public function isIsDefaultAddress(): ?bool
  170.     {
  171.         return $this->isDefaultAddress;
  172.     }
  173.     public function setIsDefaultAddress(bool $isDefaultAddress): self
  174.     {
  175.         $this->isDefaultAddress $isDefaultAddress;
  176.         return $this;
  177.     }
  178.     public function isIsBillingAddress(): ?bool
  179.     {
  180.         return $this->isBillingAddress;
  181.     }
  182.     public function setIsBillingAddress(bool $isBillingAddress): self
  183.     {
  184.         $this->isBillingAddress $isBillingAddress;
  185.         return $this;
  186.     }
  187.     public function getProvince(): ?Province
  188.     {
  189.         return $this->province;
  190.     }
  191.     public function setProvince(?Province $province): self
  192.     {
  193.         $this->province $province;
  194.         return $this;
  195.     }
  196.     /**
  197.      * @return Collection<int, SharedAddress>
  198.      */
  199.     public function getSharedAddresses(): Collection
  200.     {
  201.         return $this->sharedAddresses;
  202.     }
  203.     public function addSharedAddress(SharedAddress $sharedAddress): self
  204.     {
  205.         if (!$this->sharedAddresses->contains($sharedAddress)) {
  206.             $this->sharedAddresses->add($sharedAddress);
  207.             $sharedAddress->setAddress($this);
  208.         }
  209.         return $this;
  210.     }
  211.     public function removeSharedAddress(SharedAddress $sharedAddress): self
  212.     {
  213.         if ($this->sharedAddresses->removeElement($sharedAddress)) {
  214.             // set the owning side to null (unless already changed)
  215.             if ($sharedAddress->getAddress() === $this) {
  216.                 $sharedAddress->setAddress(null);
  217.             }
  218.         }
  219.         return $this;
  220.     }
  221.     /**
  222.      * @return Collection<int, BuyingGroup>
  223.      */
  224.     public function getBuyingGroups(): Collection
  225.     {
  226.         return $this->buyingGroups;
  227.     }
  228.     public function addBuyingGroup(BuyingGroup $buyingGroup): self
  229.     {
  230.         if (!$this->buyingGroups->contains($buyingGroup)) {
  231.             $this->buyingGroups->add($buyingGroup);
  232.             $buyingGroup->setAddress($this);
  233.         }
  234.         return $this;
  235.     }
  236.     public function removeBuyingGroup(BuyingGroup $buyingGroup): self
  237.     {
  238.         if ($this->buyingGroups->removeElement($buyingGroup)) {
  239.             // set the owning side to null (unless already changed)
  240.             if ($buyingGroup->getAddress() === $this) {
  241.                 $buyingGroup->setAddress(null);
  242.             }
  243.         }
  244.         return $this;
  245.     }
  246. }