style: Laravel Pint 코드 스타일 자동 수정

This commit is contained in:
2025-11-25 11:06:03 +09:00
parent dc91b89b44
commit 3992adc800
28 changed files with 81 additions and 74 deletions

View File

@@ -37,7 +37,7 @@ public function edit(int $id): View
{
$department = $this->departmentService->getDepartmentById($id);
if (!$department) {
if (! $department) {
abort(404, '부서를 찾을 수 없습니다.');
}
@@ -45,4 +45,4 @@ public function edit(int $id): View
return view('departments.edit', compact('department', 'departments'));
}
}
}