src/Entity/ClientActivationToken.php line 9

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