src/Entity/SharedAddress.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SharedAddressRepository;
  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\Validator\Constraints as Assert;
  10. #[ORM\Entity(repositoryClassSharedAddressRepository::class)]
  11. class SharedAddress
  12. {
  13.     use BlameableEntity//Hook blameable behaviour. Updates createdBy, updatedBy fields
  14.     use TimestampableEntity//Hook timestampable behaviour. Updates createdAt, updatedAt fields 
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue(strategy"IDENTITY")]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\ManyToOne(inversedBy'sharedAddressesToMe')]
  20.     #[ORM\JoinColumn(nullablefalse)]
  21.     #[Assert\NotNull()]
  22.     private ?User $userToShare null;
  23.     #[ORM\ManyToOne(inversedBy'sharedAddresses')]
  24.     #[ORM\JoinColumn(nullablefalse)]
  25.     #[Assert\NotNull()]
  26.     private ?Address $address null;
  27.     /**
  28.      * We want to select in which products we want to share the address
  29.      *
  30.      * @var Collection
  31.      */
  32.     #[ORM\ManyToMany(targetEntityProduct::class)]
  33.     private Collection $sharedProducts;
  34.     public function __construct()
  35.     {
  36.         $this->sharedProducts = new ArrayCollection();
  37.     }
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getUserToShare(): ?User
  43.     {
  44.         return $this->userToShare;
  45.     }
  46.     public function setUserToShare(?User $userToShare): self
  47.     {
  48.         $this->userToShare $userToShare;
  49.         return $this;
  50.     }
  51.     public function getAddress(): ?Address
  52.     {
  53.         return $this->address;
  54.     }
  55.     public function setAddress(?Address $address): self
  56.     {
  57.         $this->address $address;
  58.         return $this;
  59.     }
  60.     /**
  61.      * @return Collection<int, Product>
  62.      */
  63.     public function getSharedProducts(): Collection
  64.     {
  65.         return $this->sharedProducts;
  66.     }
  67.     public function addSharedProduct(Product $excludedProduct): self
  68.     {
  69.         if (!$this->sharedProducts->contains($excludedProduct)) {
  70.             $this->sharedProducts->add($excludedProduct);
  71.         }
  72.         return $this;
  73.     }
  74.     public function removeSharedProduct(Product $excludedProduct): self
  75.     {
  76.         $this->sharedProducts->removeElement($excludedProduct);
  77.         return $this;
  78.     }
  79. }