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

@@ -2,10 +2,10 @@
namespace App\Http\Controllers\Api\V1;
use Illuminate\Http\Request;
use App\Helpers\ApiResponse;
use App\Http\Controllers\Controller;
use App\Services\TenantFieldSettingService;
use App\Helpers\ApiResponse;
use Illuminate\Http\Request;
/**
* @OA\Tag(
@@ -22,18 +22,23 @@ class TenantFieldSettingController extends Controller
* description="전역 + 테넌트별 병합된 필드 설정 효과값을 조회합니다.",
* tags={"Settings - Fields"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\Response(
* response=200,
* description="필드 설정 목록 조회 성공",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=true),
* @OA\Property(property="message", type="string", example="조회 성공"),
* @OA\Property(
* property="data",
* type="array",
*
* @OA\Items(
* type="object",
*
* @OA\Property(property="field_key", type="string", example="product_name_required"),
* @OA\Property(property="field_value", type="string", example="true"),
* @OA\Property(property="source", type="string", example="tenant", description="global 또는 tenant")
@@ -57,38 +62,50 @@ public function index(Request $request)
* description="여러 필드 설정을 트랜잭션으로 일괄 저장합니다.",
* tags={"Settings - Fields"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\RequestBody(
* required=true,
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(
* property="fields",
* type="array",
*
* @OA\Items(
* type="object",
*
* @OA\Property(property="field_key", type="string", example="product_name_required"),
* @OA\Property(property="field_value", type="string", example="true")
* )
* )
* )
* ),
*
* @OA\Response(
* response=200,
* description="대량 저장 성공",
*
* @OA\JsonContent(ref="#/components/schemas/ApiResponse")
* ),
*
* @OA\Response(
* response=400,
* description="유효하지 않은 필드 타입",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="유효하지 않은 필드 타입입니다.")
* )
* ),
*
* @OA\Response(
* response=422,
* description="유효성 검사 실패",
*
* @OA\JsonContent(ref="#/components/schemas/ErrorResponse")
* )
* )
@@ -107,39 +124,52 @@ public function bulkUpsert(Request $request)
* description="특정 필드 설정을 개별적으로 수정합니다.",
* tags={"Settings - Fields"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\Parameter(
* name="key",
* in="path",
* required=true,
* description="필드 키",
*
* @OA\Schema(type="string", example="product_name_required")
* ),
*
* @OA\RequestBody(
* required=true,
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="field_value", type="string", example="false")
* )
* ),
*
* @OA\Response(
* response=200,
* description="필드 설정 수정 성공",
*
* @OA\JsonContent(ref="#/components/schemas/ApiResponse")
* ),
*
* @OA\Response(
* response=404,
* description="필드 설정을 찾을 수 없음",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="해당 필드 설정을 찾을 수 없습니다.")
* )
* ),
*
* @OA\Response(
* response=400,
* description="유효하지 않은 필드 타입",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="유효하지 않은 필드 타입입니다.")
* )