mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 04:23:59 +00:00
34 lines
534 B
PHP
34 lines
534 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Accounts\DataTransferObjects;
|
|
|
|
|
|
use App\Classes\Interfaces\DataTransferObject;
|
|
|
|
class GeneratePasswordResetObject implements DataTransferObject
|
|
{
|
|
|
|
/** @var string */
|
|
private $email;
|
|
|
|
/**
|
|
* GeneratePasswordResetObject constructor.
|
|
* @param string $email
|
|
*/
|
|
public function __construct(string $email)
|
|
{
|
|
$this->email = $email;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEmail(): string
|
|
{
|
|
return $this->email;
|
|
}
|
|
|
|
|
|
|
|
|
|
} |