mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
1fbdc795ff
- Update Standard Segment Constant Logic Class - List Standard Segment Constant Logic Class - List Standard Segment Logic Class
20 lines
547 B
PHP
20 lines
547 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\StandardSegmentConstants;
|
|
|
|
use App\Classes\Modules\SegmentConstants\ControllersLogic\ListStandardSegmentConstantLogic;
|
|
use Illuminate\Http\JsonResponse;
|
|
use Illuminate\Http\Request;
|
|
|
|
class ListStandardSegmentConstantsController
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
* @param ListStandardSegmentConstantLogic $logic
|
|
* @return JsonResponse
|
|
*/
|
|
public function list(Request $request, ListStandardSegmentConstantLogic $logic): JsonResponse {
|
|
return $logic->execute($request);
|
|
}
|
|
|
|
} |