src\Entity\ResetPassword.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ResetPasswordRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ResetPasswordRepository::class)
  7.  */
  8. class ResetPassword
  9. {
  10.     /**
  11.      * @ORM\Id()
  12.      * @ORM\GeneratedValue()
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="resetPasswords")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $user;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      */
  24.     private $token;
  25.     /**
  26.      * @ORM\Column(type="boolean")
  27.      */
  28.     private $active;
  29.     /**
  30.      * @ORM\Column(type="datetime")
  31.      */
  32.     private $created_at;
  33.     /**
  34.      * @ORM\Column(type="datetime", nullable=true)
  35.      */
  36.     private $expires_at;
  37.     /**
  38.      * @ORM\Column(type="datetime", nullable=true)
  39.      */
  40.     private $validated_at;
  41.     public function __construct()
  42.     {
  43.         $this->created_at=new \DateTime();
  44.     }
  45.     public function getId(): ?int
  46.     {
  47.         return $this->id;
  48.     }
  49.     public function getUser(): ?User
  50.     {
  51.         return $this->user;
  52.     }
  53.     public function setUser(?User $user): self
  54.     {
  55.         $this->user $user;
  56.         return $this;
  57.     }
  58.     public function getToken(): ?string
  59.     {
  60.         return $this->token;
  61.     }
  62.     public function setToken(string $token): self
  63.     {
  64.         $this->token $token;
  65.         return $this;
  66.     }
  67.     public function getActive(): ?bool
  68.     {
  69.         return $this->active;
  70.     }
  71.     public function setActive(bool $active): self
  72.     {
  73.         $this->active $active;
  74.         return $this;
  75.     }
  76.     public function getCreatedAt(): ?\DateTimeInterface
  77.     {
  78.         return $this->created_at;
  79.     }
  80.     public function setCreatedAt(\DateTimeInterface $created_at): self
  81.     {
  82.         $this->created_at $created_at;
  83.         return $this;
  84.     }
  85.     public function getExpiresAt(): ?\DateTimeInterface
  86.     {
  87.         return $this->expires_at;
  88.     }
  89.     public function setExpiresAt(?\DateTimeInterface $expires_at): self
  90.     {
  91.         $this->expires_at $expires_at;
  92.         return $this;
  93.     }
  94.     public function getValidatedAt(): ?\DateTimeInterface
  95.     {
  96.         return $this->validated_at;
  97.     }
  98.     public function setValidatedAt(?\DateTimeInterface $validated_at): self
  99.     {
  100.         $this->validated_at $validated_at;
  101.         return $this;
  102.     }
  103. }