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 App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Services\FileService;
use App\Helpers\ApiResponse;
use App\Http\Controllers\Controller;
use App\Services\FileService;
use Illuminate\Http\Request;
/**
* @OA\Tag(
@@ -22,33 +22,43 @@ class FileController extends Controller
* description="파일을 업로드합니다.",
* tags={"Files"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\RequestBody(
* required=true,
*
* @OA\MediaType(
* mediaType="multipart/form-data",
*
* @OA\Schema(
* type="object",
*
* @OA\Property(
* property="files[]",
* type="array",
*
* @OA\Items(type="string", format="binary"),
* description="업로드할 파일들"
* )
* )
* )
* ),
*
* @OA\Response(
* response=201,
* 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="id", type="integer", example=1),
* @OA\Property(property="filename", type="string", example="document.pdf"),
* @OA\Property(property="path", type="string", example="/uploads/tenant/1/document.pdf"),
@@ -57,29 +67,38 @@ class FileController extends Controller
* )
* )
* ),
*
* @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=413,
* description="파일 크기 초과",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="파일 크기가 너무 큽니다.")
* )
* ),
*
* @OA\Response(
* response=415,
* description="지원하지 않는 파일 형식",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="허용되지 않는 파일 형식입니다.")
* )
@@ -100,23 +119,30 @@ public function upload(Request $request)
* description="파일 목록을 조회합니다.",
* tags={"Files"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\Parameter(
* name="page",
* in="query",
* description="페이지 번호",
*
* @OA\Schema(type="integer", example=1)
* ),
*
* @OA\Parameter(
* name="size",
* in="query",
* description="페이지 크기",
*
* @OA\Schema(type="integer", example=10)
* ),
*
* @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(
@@ -128,8 +154,10 @@ public function upload(Request $request)
* @OA\Property(
* property="data",
* type="array",
*
* @OA\Items(
* type="object",
*
* @OA\Property(property="id", type="integer", example=1),
* @OA\Property(property="filename", type="string", example="document.pdf"),
* @OA\Property(property="path", type="string", example="/uploads/tenant/1/document.pdf"),
@@ -156,32 +184,42 @@ public function list(Request $request)
* description="파일을 삭제합니다.",
* tags={"Files"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\RequestBody(
* required=true,
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(
* property="file_ids",
* type="array",
*
* @OA\Items(type="integer"),
* example={1, 2, 3}
* )
* )
* ),
*
* @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\Response(
* response=404,
* description="파일을 찾을 수 없음",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="파일을 찾을 수 없습니다.")
* )
@@ -202,18 +240,23 @@ public function delete(Request $request)
* description="특정 파일의 정보를 조회합니다.",
* tags={"Files"},
* security={{"ApiKeyAuth": {}, "BearerAuth": {}}},
*
* @OA\Parameter(
* name="file_id",
* in="query",
* required=true,
* description="파일 ID",
*
* @OA\Schema(type="integer", example=1)
* ),
*
* @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(
@@ -228,11 +271,14 @@ public function delete(Request $request)
* )
* )
* ),
*
* @OA\Response(
* response=404,
* description="파일을 찾을 수 없음",
*
* @OA\JsonContent(
* type="object",
*
* @OA\Property(property="success", type="boolean", example=false),
* @OA\Property(property="message", type="string", example="파일을 찾을 수 없습니다.")
* )