src/Entity/BattleInvite.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Enum\BattleInviteStatusType;
  4. use App\Repository\BattleInviteRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassBattleInviteRepository::class)]
  7. class BattleInvite
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\OneToOne(inversedBy'battleInvite'cascade: ['persist''remove'])]
  14.     private ?Battle $battle null;
  15.     #[ORM\Column(length255)]
  16.     private ?string $token null;
  17.     #[ORM\Column]
  18.     private ?BattleInviteStatusType $status null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?\DateTime $createdAt null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?\DateTime $validTo null;
  23.     public function getId(): ?int
  24.     {
  25.         return $this->id;
  26.     }
  27.     public function getBattle(): ?Battle
  28.     {
  29.         return $this->battle;
  30.     }
  31.     public function setBattle(?Battle $battle): static
  32.     {
  33.         $this->battle $battle;
  34.         return $this;
  35.     }
  36.     public function getToken(): ?string
  37.     {
  38.         return $this->token;
  39.     }
  40.     public function setToken(string $token): static
  41.     {
  42.         $this->token $token;
  43.         return $this;
  44.     }
  45.     public function getCreatedAt(): ?\DateTime
  46.     {
  47.         return $this->createdAt;
  48.     }
  49.     public function setCreatedAt(?\DateTime $createdAt): static
  50.     {
  51.         $this->createdAt $createdAt;
  52.         return $this;
  53.     }
  54.     public function getValidTo(): ?\DateTime
  55.     {
  56.         return $this->validTo;
  57.     }
  58.     public function setValidTo(?\DateTime $validTo): static
  59.     {
  60.         $this->validTo $validTo;
  61.         return $this;
  62.     }
  63.     public function getStatus(): ?BattleInviteStatusType
  64.     {
  65.         return $this->status;
  66.     }
  67.     public function setStatus(BattleInviteStatusType $status): static
  68.     {
  69.         $this->status $status;
  70.         return $this;
  71.     }
  72. }