Major incomplete Change

This commit is contained in:
Omair Saleh
2019-02-14 11:43:19 +08:00
parent 771c52883f
commit 79131671bf
138 changed files with 2345 additions and 69018 deletions
@@ -0,0 +1,44 @@
<?php
namespace App\Classes\Modules\Accounts\DataTransferObjects;
class UserInvitationObject
{
/** @var integer */
private $role;
/** @var string */
private $inviteeEmail;
/**
* UserInvitationObject constructor.
* @param int $role
* @param string $inviteeEmail
*/
public function __construct(int $role, string $inviteeEmail)
{
$this->role = $role;
$this->inviteeEmail = $inviteeEmail;
}
/**
* @return int
*/
public function getRole(): int
{
return $this->role;
}
/**
* @return string
*/
public function getInviteeEmail(): string
{
return $this->inviteeEmail;
}
}