From a3a08ade86a1934fcb613abe70301af70ac27293 Mon Sep 17 00:00:00 2001 From: Nick Zeng Date: Fri, 13 Mar 2026 13:35:50 +0800 Subject: [PATCH] update raw refund --- backend/app/Controller/Api/V1/RawRefundController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/Controller/Api/V1/RawRefundController.php b/backend/app/Controller/Api/V1/RawRefundController.php index 9df8e27..32a2986 100644 --- a/backend/app/Controller/Api/V1/RawRefundController.php +++ b/backend/app/Controller/Api/V1/RawRefundController.php @@ -144,6 +144,6 @@ class RawRefundController extends RefundController #[RequestMapping(path: "{id}", methods: "GET")] public function show(int $id): ResponseInterface|array { - return AbstractDataController::show($id); + return parent::show($id); } }