Notice: Undefined variable: namespace in C:\Apache24\htdocs\vehicle\vendor\symfony\maker-bundle\src\Resources\skeleton\resetPassword\ResetPasswordRequest.tpl.php on line 3
;
use Doctrine\ORM\Mapping as ORM;
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestInterface;
use SymfonyCasts\Bundle\ResetPassword\Model\ResetPasswordRequestTrait;
/**
* @ORM\Entity(repositoryClass="
Notice: Undefined variable: repository_class_name in C:\Apache24\htdocs\vehicle\vendor\symfony\maker-bundle\src\Resources\skeleton\resetPassword\ResetPasswordRequest.tpl.php on line 10
")
*/
class
Notice: Undefined variable: class_name in C:\Apache24\htdocs\vehicle\vendor\symfony\maker-bundle\src\Resources\skeleton\resetPassword\ResetPasswordRequest.tpl.php on line 12
implements ResetPasswordRequestInterface
{
use ResetPasswordRequestTrait;
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\ManyToOne(targetEntity="
Notice: Undefined variable: user_full_class_name in C:\Apache24\htdocs\vehicle\vendor\symfony\maker-bundle\src\Resources\skeleton\resetPassword\ResetPasswordRequest.tpl.php on line 24
")
*/
private $user;
public function __construct(object $user, \DateTimeInterface $expiresAt, string $selector, string $hashedToken)
{
$this->user = $user;
$this->initialize($expiresAt, $selector, $hashedToken);
}
public function getUser(): object
{
return $this->user;
}
}