src/Entity/Referral.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ReferralRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassReferralRepository::class)]
  8. class Referral
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $code null;
  16.     #[ORM\OneToOne(inversedBy'referral'cascade: ['persist''remove'])]
  17.     private ?User $user null;
  18.     #[ORM\OneToMany(targetEntityUser::class, mappedBy'referredby')]
  19.     private Collection $users;
  20.     public function __construct()
  21.     {
  22.         $this->users = new ArrayCollection();
  23.     }
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getCode(): ?string
  29.     {
  30.         return $this->code;
  31.     }
  32.     public function setCode(?string $code): static
  33.     {
  34.         $this->code $code;
  35.         return $this;
  36.     }
  37.     public function getUser(): ?User
  38.     {
  39.         return $this->user;
  40.     }
  41.     public function setUser(?User $user): static
  42.     {
  43.         $this->user $user;
  44.         return $this;
  45.     }
  46.     /**
  47.      * @return Collection<int, User>
  48.      */
  49.     public function getUsers(): Collection
  50.     {
  51.         return $this->users;
  52.     }
  53.     public function addUser(User $user): static
  54.     {
  55.         if (!$this->users->contains($user)) {
  56.             $this->users->add($user);
  57.             $user->setReferredby($this);
  58.         }
  59.         return $this;
  60.     }
  61.     public function removeUser(User $user): static
  62.     {
  63.         if ($this->users->removeElement($user)) {
  64.             // set the owning side to null (unless already changed)
  65.             if ($user->getReferredby() === $this) {
  66.                 $user->setReferredby(null);
  67.             }
  68.         }
  69.         return $this;
  70.     }
  71.     function __toString()
  72.     {
  73.         return $this->getCode();
  74.     }
  75. }