src/Entity/Invitation.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InvitationRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassInvitationRepository::class)]
  7. class Invitation
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $invited_email null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $invitationHash null;
  17.     #[ORM\Column]
  18.     private ?bool $inviteAccepted null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  20.     private ?\DateTimeInterface $inviteSendDate null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLE,nullabletrue)]
  22.     private ?\DateTimeInterface $inviteAcceptedDate null;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getInvitedEmail(): ?string
  28.     {
  29.         return $this->invited_email;
  30.     }
  31.     public function setInvitedEmail(string $invited_email): static
  32.     {
  33.         $this->invited_email $invited_email;
  34.         return $this;
  35.     }
  36.     public function getInvitationHash(): ?string
  37.     {
  38.         return $this->invitationHash;
  39.     }
  40.     public function setInvitationHash(string $invitationHash): static
  41.     {
  42.         $this->invitationHash $invitationHash;
  43.         return $this;
  44.     }
  45.     public function isInviteAccepted(): ?bool
  46.     {
  47.         return $this->inviteAccepted;
  48.     }
  49.     public function setInviteAccepted(bool $inviteAccepted): static
  50.     {
  51.         $this->inviteAccepted $inviteAccepted;
  52.         return $this;
  53.     }
  54.     public function getInviteSendDate(): ?\DateTimeInterface
  55.     {
  56.         return $this->inviteSendDate;
  57.     }
  58.     public function setInviteSendDate(\DateTimeInterface $inviteSendDate): static
  59.     {
  60.         $this->inviteSendDate $inviteSendDate;
  61.         return $this;
  62.     }
  63.     public function getInviteAcceptedDate(): ?\DateTimeInterface
  64.     {
  65.         return $this->inviteAcceptedDate;
  66.     }
  67.     public function setInviteAcceptedDate(\DateTimeInterface $inviteAcceptedDate): static
  68.     {
  69.         $this->inviteAcceptedDate $inviteAcceptedDate;
  70.         return $this;
  71.     }
  72. }