[chore] Pint 코드 스타일 자동 수정

This commit is contained in:
2025-12-18 16:08:59 +09:00
parent e013f5205c
commit c075678cd9
6 changed files with 25 additions and 25 deletions

View File

@@ -130,7 +130,7 @@ public function getAiAnalysisSummaryAttribute(): string
$summary .= "### 요청 정보\n";
$summary .= "- **메서드**: {$this->method}\n";
$summary .= "- **URL**: {$this->url}\n";
$summary .= "- **라우트**: " . ($this->route_name ?? 'N/A') . "\n";
$summary .= '- **라우트**: '.($this->route_name ?? 'N/A')."\n";
$summary .= "- **상태 코드**: {$this->response_status}\n";
$summary .= "- **응답 시간**: {$this->duration_ms}ms\n";
$summary .= "- **요청 시간**: {$this->created_at->format('Y-m-d H:i:s')}\n\n";
@@ -154,4 +154,4 @@ public function getAiAnalysisSummaryAttribute(): string
return $summary;
}
}
}