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

@@ -48,7 +48,7 @@ public function edit(int $id): View
{
$role = $this->roleService->getRoleById($id);
if (!$role) {
if (! $role) {
abort(404, '역할을 찾을 수 없습니다.');
}
@@ -70,4 +70,4 @@ public function edit(int $id): View
return view('roles.edit', compact('role', 'permissions', 'rolePermissionIds'));
}
}
}