mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/portal.git
synced 2026-08-19 20:44:01 +00:00
20 lines
467 B
PHP
20 lines
467 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Segments;
|
|
|
|
use App\Classes\Modules\Segments\ControllersLogic\FetchConstantLogic;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class FetchConstantController
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param FetchConstantLogic $logic
|
|
* @return JsonResponse
|
|
*/
|
|
public function fetch(Request $request, FetchConstantLogic $logic): JsonResponse {
|
|
return $logic->execute($request);
|
|
}
|
|
|
|
} |