Files
izyim/app/Http/Controllers/Contacts/ListContactController.php
T
2019-03-19 17:11:21 +08:00

22 lines
371 B
PHP
Executable File

<?php
/**
* Created by PhpStorm.
* User: user
* Date: 06/03/2019
* Time: 5:11 PM
*/
namespace App\Http\Controllers\Contacts;
use App\Modules\ControllerLogic\Contacts\ListContactLogic;
class ListContactController
{
public function list(string $type, int $referenceId,ListContactLogic $logic)
{
return $logic->execute($type,$referenceId);
}
}