Major incomplete Change

This commit is contained in:
Omair Saleh
2019-02-16 06:42:42 +08:00
parent 7745b580fb
commit 02cdc30640
15 changed files with 151 additions and 72 deletions
@@ -15,62 +15,76 @@ final class UserObject {
/** @var string */
private $password;
private $roleId;
/** @var bool */
private $isVerified;
/**
* UserObject constructor.
* @param string $firstName
* @param string $lastName
* @param string $email
* @param string $password
* @param bool $isVerified
* @param $roleId
* @param bool $isVerified
*/
public function __construct(
string $firstName,
string $lastName,
string $email,
string $password,
bool $isVerified = false
) {
$this->firstName = $firstName;
$this->lastName = $lastName;
$this->email = $email;
$this->password = $password;
public function __construct(string $firstName, string $lastName, string $email, string $password, $roleId, bool $isVerified)
{
$this->firstName = $firstName;
$this->lastName = $lastName;
$this->email = $email;
$this->password = $password;
$this->roleId = $roleId;
$this->isVerified = $isVerified;
}
/**
* @return string
*/
public function getFirstName(): string {
public function getFirstName(): string
{
return $this->firstName;
}
/**
* @return string
*/
public function getLastName(): string {
public function getLastName(): string
{
return $this->lastName;
}
/**
* @return string
*/
public function getEmail(): string {
public function getEmail(): string
{
return $this->email;
}
/**
* @return string
*/
public function getPassword(): string {
public function getPassword(): string
{
return $this->password;
}
/**
* @return mixed
*/
public function getRoleId()
{
return $this->roleId;
}
/**
* @return bool
*/
public function isVerified(): bool {
public function isVerified(): bool
{
return $this->isVerified;
}
}