fix: CommonComponents.php 중복 Swagger 스키마 제거

- UserUpdateRequest, PasswordChangeRequest, SwitchTenantRequest 스키마 중복 제거
- UserApi.php에 정의된 더 상세한 버전 유지
- l5-swagger 생성 오류 해결
This commit is contained in:
2025-11-07 02:55:54 +09:00
parent 17a710f8ef
commit da88754e14

View File

@@ -78,31 +78,6 @@
* )
*
* @OA\Schema(
* schema="UserUpdateRequest",
* type="object",
*
* @OA\Property(property="name", type="string", example="홍길동"),
* @OA\Property(property="phone", type="string", example="010-1111-2222")
* )
*
* @OA\Schema(
* 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")
* )
*
* @OA\Schema(
* schema="SwitchTenantRequest",
* type="object",
* required={"tenant_id"},
*
* @OA\Property(property="tenant_id", type="integer", example=2, description="스위치할 테넌트 ID")
* )
*
* @OA\Schema(
* schema="ErrorResponse",
* type="object",
* description="공통 에러 응답 포맷",