src/Entity/JWTBlacklist.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\JWTBlacklistRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassJWTBlacklistRepository::class)]
  7. class JWTBlacklist
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(typeTypes::TEXT)]
  14.     private ?string $token null;
  15.     public function getId(): ?int
  16.     {
  17.         return $this->id;
  18.     }
  19.     public function getToken(): ?string
  20.     {
  21.         return $this->token;
  22.     }
  23.     public function setToken(string $token): static
  24.     {
  25.         $this->token $token;
  26.         return $this;
  27.     }
  28. }