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

@@ -16,13 +16,17 @@ class DesignBomTemplateExtras
* tags={"Design BOM"},
* summary="Diff two BOM templates",
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\Parameter(name="templateId", in="path", required=true, @OA\Schema(type="integer")),
* @OA\Parameter(name="other_template_id", in="query", required=true, @OA\Schema(type="integer")),
*
* @OA\Response(
* response=200,
* description="Success",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean"),
* @OA\Property(property="message", type="string"),
* @OA\Property(property="data", type="object",
@@ -58,21 +62,28 @@ class DesignBomTemplateExtras
* tags={"Design BOM"},
* summary="Clone a BOM template (deep copy)",
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\Parameter(name="templateId", in="path", required=true, @OA\Schema(type="integer")),
*
* @OA\RequestBody(
* required=false,
*
* @OA\JsonContent(type="object",
*
* @OA\Property(property="target_version_id", type="integer", nullable=true),
* @OA\Property(property="name", type="string", nullable=true),
* @OA\Property(property="is_primary", type="boolean", nullable=true),
* @OA\Property(property="notes", type="string", nullable=true)
* )
* ),
*
* @OA\Response(
* response=200,
* description="Cloned",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean"),
* @OA\Property(property="message", type="string"),
* @OA\Property(property="data", type="object",
@@ -90,6 +101,7 @@ class DesignBomTemplateExtras
* @OA\Schema(
* schema="DesignBomItemDiffRow",
* type="object",
*
* @OA\Property(property="ref_type", type="string", example="MATERIAL"),
* @OA\Property(property="ref_id", type="integer"),
* @OA\Property(property="qty", type="number"),