src/Entity/AuthorizationToken.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AuthorizationTokenRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassAuthorizationTokenRepository::class)]
  6. class AuthorizationToken
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'authorizationTokens')]
  13.     private ?Client $client null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $token null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?\DateTime $validTo null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?\DateTime $createdAt null;
  20.     public function getId(): ?int
  21.     {
  22.         return $this->id;
  23.     }
  24.     public function getClient(): ?Client
  25.     {
  26.         return $this->client;
  27.     }
  28.     public function setClient(?Client $client): static
  29.     {
  30.         $this->client $client;
  31.         return $this;
  32.     }
  33.     public function getToken(): ?string
  34.     {
  35.         return $this->token;
  36.     }
  37.     public function setToken(string $token): static
  38.     {
  39.         $this->token $token;
  40.         return $this;
  41.     }
  42.     public function getValidTo(): ?\DateTime
  43.     {
  44.         return $this->validTo;
  45.     }
  46.     public function setValidTo(?\DateTime $validTo): static
  47.     {
  48.         $this->validTo $validTo;
  49.         return $this;
  50.     }
  51.     public function getCreatedAt(): ?\DateTime
  52.     {
  53.         return $this->createdAt;
  54.     }
  55.     public function setCreatedAt(?\DateTime $createdAt): static
  56.     {
  57.         $this->createdAt $createdAt;
  58.         return $this;
  59.     }
  60. }