style: Laravel Pint 코드 포맷팅 적용

- PSR-12 스타일 가이드 준수
- 302개 파일 스타일 이슈 자동 수정
- 코드 로직 변경 없음 (포맷팅만)
This commit is contained in:
2025-11-06 17:45:49 +09:00
parent 48e76432ee
commit cc206fdbed
294 changed files with 4476 additions and 2561 deletions

View File

@@ -11,6 +11,7 @@
* in="query",
* required=false,
* description="페이지 번호(1부터)",
*
* @OA\Schema(type="integer", minimum=1, example=1)
* )
*
@@ -20,12 +21,13 @@
* in="query",
* required=false,
* description="페이지 당 개수(기본 20)",
*
* @OA\Schema(type="integer", minimum=1, maximum=200, example=20)
* )
*
* @OA\Schema(
* schema="ApiResponse",
* type="object",
*
* @OA\Property(property="success", type="boolean", example=true),
* @OA\Property(property="message", type="string", example="요청 성공"),
* @OA\Property(property="data", nullable=true)
@@ -34,6 +36,7 @@
* @OA\Schema(
* schema="PaginationMeta",
* type="object",
*
* @OA\Property(property="page", type="integer", example=1),
* @OA\Property(property="size", type="integer", example=20),
* @OA\Property(property="total", type="integer", example=126),
@@ -44,6 +47,7 @@
* schema="User",
* type="object",
* required={"id","name","email"},
*
* @OA\Property(property="id", type="integer", example=101),
* @OA\Property(property="tenant_id", type="integer", example=1),
* @OA\Property(property="name", type="string", example="홍길동"),
@@ -59,6 +63,7 @@
* schema="LoginRequest",
* type="object",
* required={"email","password"},
*
* @OA\Property(property="email", type="string", example="hong@kdcorp.co.kr"),
* @OA\Property(property="password", type="string", example="secret1234!")
* )
@@ -66,6 +71,7 @@
* @OA\Schema(
* schema="TokenResponse",
* type="object",
*
* @OA\Property(property="access_token", type="string", example="eyJhbGciOi..."),
* @OA\Property(property="token_type", type="string", example="Bearer"),
* @OA\Property(property="expires_in", type="integer", example=3600)
@@ -74,6 +80,7 @@
* @OA\Schema(
* schema="UserUpdateRequest",
* type="object",
*
* @OA\Property(property="name", type="string", example="홍길동"),
* @OA\Property(property="phone", type="string", example="010-1111-2222")
* )
@@ -82,6 +89,7 @@
* schema="PasswordChangeRequest",
* type="object",
* required={"current_password","new_password"},
*
* @OA\Property(property="current_password", type="string", example="oldPass!234"),
* @OA\Property(property="new_password", type="string", example="NewPass!234")
* )
@@ -90,6 +98,7 @@
* schema="SwitchTenantRequest",
* type="object",
* required={"tenant_id"},
*
* @OA\Property(property="tenant_id", type="integer", example=2, description="스위치할 테넌트 ID")
* )
*
@@ -97,6 +106,7 @@
* schema="ErrorResponse",
* type="object",
* description="공통 에러 응답 포맷",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="요청 실패"),
* @OA\Property(