mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 20:44:03 +00:00
21 lines
362 B
PHP
21 lines
362 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: user
|
|
* Date: 15/03/2019
|
|
* Time: 5:16 PM
|
|
*/
|
|
|
|
namespace App\Http\Controllers\Account;
|
|
|
|
|
|
use App\Classes\Modules\ControllersLogic\Accounts\DeleteUserInvitationLogic;
|
|
|
|
class DeleteInviteUserController
|
|
{
|
|
public function delete(int $id, DeleteUserInvitationLogic $logic){
|
|
|
|
return $logic->execute($id);
|
|
}
|
|
|
|
} |