From 03d878e72f3b3cf429af001a9517f9728fcd5e42 Mon Sep 17 00:00:00 2001 From: hskwon Date: Mon, 22 Dec 2025 17:50:29 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20ApiResponse=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - app/Responses/ApiResponse.php → app/Helpers/ApiResponse.php --- standards/pagination-policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standards/pagination-policy.md b/standards/pagination-policy.md index 80b95dc..ce94cae 100644 --- a/standards/pagination-policy.md +++ b/standards/pagination-policy.md @@ -110,7 +110,7 @@ public function getItems(array $params): LengthAwarePaginator `ApiResponse` 클래스에 페이지네이션 헬퍼 추가: ```php -// app/Responses/ApiResponse.php +// app/Helpers/ApiResponse.php public static function paginated(LengthAwarePaginator $paginator, string $message = null): JsonResponse {