You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chamilo\CoreBundle\Entity;
|
|
|
|
use DateTimeInterface;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestInterface;
|
|
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestTrait;
|
|
|
|
/**
|
|
* @ORM\Entity(repositoryClass="Chamilo\CoreBundle\Repository\ResetPasswordRequestRepository")
|
|
*/
|
|
class ResetPasswordRequest implements ResetPasswordRequestInterface
|
|
{
|
|
use ResetPasswordRequestTrait;
|
|
|
|
/**
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue
|
|
* @ORM\Column(type="integer")
|
|
*/
|
|
private ?int $id = null;
|
|
|
|
/**
|
|
* @ORM\ManyToOne(targetEntity="Chamilo\CoreBundle\Entity\User")
|
|
*
|
|
* @var null|\Chamilo\CoreBundle\Entity\User|object
|
|
*/
|
|
private $user;
|
|
|
|
public function __construct(object $user, DateTimeInterface $expiresAt, string $selector, string $hashedToken)
|
|
{
|
|
$this->user = $user;
|
|
$this->initialize($expiresAt, $selector, $hashedToken);
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getUser(): object
|
|
{
|
|
return $this->user;
|
|
}
|
|
}
|
|
|