Files
izyim/app/Http/Controllers/Contacts/ListContactController.php
T
Omair Saleh 919e0252f7 large commit
2019-06-03 10:29:08 +08:00

14 lines
286 B
PHP

<?php
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);
}
}