mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 04:14:05 +00:00
39 lines
727 B
PHP
Executable File
39 lines
727 B
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Omair Saleh
|
|
* Date: 6/3/2019
|
|
* Time: 3:12 PM
|
|
*/
|
|
|
|
namespace App\Classes\Modules\Accounts\Validation;
|
|
|
|
|
|
use App\Classes\Modules\Accounts\DataTransferObjects\UserInvitationObject;
|
|
use App\Models\UserInvitation;
|
|
|
|
class CanSendAccountInvitation
|
|
{
|
|
|
|
/** @var UserInvitation */
|
|
private $repository;
|
|
|
|
/**
|
|
* CreatesUserInvitation constructor.
|
|
* @param UserInvitation $repository
|
|
*/
|
|
public function __construct(UserInvitation $repository)
|
|
{
|
|
$this->repository = $repository;
|
|
}
|
|
|
|
/**
|
|
* @param UserInvitationObject $object
|
|
* @return bool
|
|
*/
|
|
public function execute(UserInvitationObject $object){
|
|
|
|
return true;
|
|
}
|
|
|
|
} |