src/Entity/PaymentMethod.php line 16

Open in your IDE?
  1. <?php
  2. // src/Entity/PaymentMethod.php
  3. namespace App\Entity;
  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]
  11. #[ORM\Table(name'payment_method')]
  12. class PaymentMethod
  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\Column(length255nullabletrue)]
  21.     #[Assert\Length(max255)]
  22.     private ?string $name null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     #[Assert\Length(max255)]
  25.     private ?string $holderId null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?bool $active null;
  28.     #[ORM\OneToMany(mappedBy'paymentMethod'targetEntityUser::class)]
  29.     private Collection $users;
  30.     public function __construct()
  31.     {
  32.         $this->users = new ArrayCollection();
  33.     }
  34.     public function getId(): ?int
  35.     {
  36.         return $this->id;
  37.     }
  38.     public function getName(): ?string
  39.     {
  40.         return $this->name;
  41.     }
  42.     public function setName(?string $name): self
  43.     {
  44.         $this->name $name;
  45.         return $this;
  46.     }
  47.     public function getHolderId(): ?string
  48.     {
  49.         return $this->holderId;
  50.     }
  51.     public function setHolderId(?string $holderId): self
  52.     {
  53.         $this->holderId $holderId;
  54.         return $this;
  55.     }
  56.     public function isActive(): ?bool
  57.     {
  58.         return $this->active;
  59.     }
  60.     public function setActive(?bool $active): self
  61.     {
  62.         $this->active $active;
  63.         return $this;
  64.     }
  65.     /**
  66.      * @return Collection<int, User>
  67.      */
  68.     public function getUsers(): Collection
  69.     {
  70.         return $this->users;
  71.     }
  72.     public function addUser(User $user): self
  73.     {
  74.         if (!$this->users->contains($user)) {
  75.             $this->users[] = $user;
  76.             $user->setPaymentMethod($this);
  77.         }
  78.         return $this;
  79.     }
  80.     public function removeUser(User $user): self
  81.     {
  82.         if ($this->users->removeElement($user)) {
  83.             if ($user->getPaymentMethod() === $this) {
  84.                 $user->setPaymentMethod(null);
  85.             }
  86.         }
  87.         return $this;
  88.     }
  89. }