Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <?php
-
- namespace App\Http\Controllers\Web\HTICWeb;
-
- use App\Http\Controllers\Web\WebController;
- use Illuminate\Http\JsonResponse;
- use Illuminate\Http\Request;
-
- class UserController extends WebController
- {
-
- public function name(): string
- {
- return "[IC定期連携]利用者情報連携";
- }
-
- public function description(): string
- {
- return "[IC定期連携]利用者情報連携";
- }
-
-
- public function __construct(protected UserParam $param)
- {
- parent::__construct();
- }
-
- protected function run(Request $request): JsonResponse
- {
- $param = $this->param;
-
-
-
-
- return $this->successResponse();
- }
- }
|