mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/izyim.git
synced 2026-08-19 12:34:03 +00:00
14 lines
286 B
PHP
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);
|
|
}
|
|
} |