You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
675B

  1. <?php
  2. namespace App\Http\Controllers\Web\HTICWeb;
  3. use App\Http\Controllers\Web\WebController;
  4. use Illuminate\Http\JsonResponse;
  5. use Illuminate\Http\Request;
  6. class UserController extends WebController
  7. {
  8. public function name(): string
  9. {
  10. return "[IC定期連携]利用者情報連携";
  11. }
  12. public function description(): string
  13. {
  14. return "[IC定期連携]利用者情報連携";
  15. }
  16. public function __construct(protected UserParam $param)
  17. {
  18. parent::__construct();
  19. }
  20. protected function run(Request $request): JsonResponse
  21. {
  22. $param = $this->param;
  23. return $this->successResponse();
  24. }
  25. }