style: Pint 포맷팅 적용

This commit is contained in:
김보곤
2026-02-25 11:45:01 +09:00
parent 68b1622a4e
commit 9a7c548246
199 changed files with 1420 additions and 1083 deletions

View File

@@ -42,7 +42,7 @@ public function mergeSignatures(EsignContract $contract): string
}
// FPDI(TCPDF 확장)로 원본 PDF 임포트
$pdf = new Fpdi();
$pdf = new Fpdi;
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
@@ -91,7 +91,7 @@ public function mergeSignatures(EsignContract $contract): string
'signed_file_hash' => hash_file('sha256', $signedAbsPath),
]);
Log::info("PDF 서명 합성 완료", [
Log::info('PDF 서명 합성 완료', [
'contract_id' => $contract->id,
'signed_file_path' => $signedRelPath,
]);
@@ -112,7 +112,7 @@ public function generatePreview(EsignContract $contract): string
throw new \RuntimeException("원본 PDF 파일이 존재하지 않습니다: {$contract->original_file_path}");
}
$pdf = new Fpdi();
$pdf = new Fpdi;
$pdf->setPrintHeader(false);
$pdf->setPrintFooter(false);
@@ -199,10 +199,11 @@ private function overlayImage(Fpdi $pdf, EsignSignField $field, float $x, float
$imagePath = Storage::disk('local')->path($signer->signature_image_path);
if (! file_exists($imagePath)) {
Log::warning("서명 이미지 파일 없음", [
Log::warning('서명 이미지 파일 없음', [
'signer_id' => $signer->id,
'path' => $signer->signature_image_path,
]);
return;
}