{
"event": "PreToolUse",
"tool_name": "Edit",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/UseCases\/Content\/ContentGenerationResult.php",
"old_string": "<?php\n\nnamespace UseCases\\Content;\n\n\/**\n * ContentGenerationResult - DTO for content generation results\n *\/\nfinal class ContentGenerationResult",
"new_string": "<?php\n\ndeclare(strict_types=1);\n\nnamespace UseCases\\Content;\n\n\/\/ @responsibility: Ergebnisobjekt für Content-Generierung\n\nfinal class ContentGenerationResult"
}
}
{
"tool_response": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/UseCases\/Content\/ContentGenerationResult.php",
"oldString": "<?php\n\nnamespace UseCases\\Content;\n\n\/**\n * ContentGenerationResult - DTO for content generation results\n *\/\nfinal class ContentGenerationResult",
"newString": "<?php\n\ndeclare(strict_types=1);\n\nnamespace UseCases\\Content;\n\n\/\/ @responsibility: Ergebnisobjekt für Content-Generierung\n\nfinal class ContentGenerationResult",
"originalFile": "<?php\n\nnamespace UseCases\\Content;\n\n\/**\n * ContentGenerationResult - DTO for content generation results\n *\/\nfinal class ContentGenerationResult\n{\n public function __construct(\n private string $content = '',\n private array $sources = [],\n private ?int $versionNumber = null,\n private ?string $error = null,\n ) {\n }\n\n public function getContent(): string\n {\n return $this->content;\n }\n\n public function getSources(): array\n {\n return $this->sources;\n }\n\n public function getVersionNumber(): ?int\n {\n return $this->versionNumber;\n }\n\n public function getError(): ?string\n {\n return $this->error;\n }\n\n public function hasError(): bool\n {\n return $this->error !== null;\n }\n\n public function isSuccess(): bool\n {\n return $this->error === null;\n }\n\n \/**\n * Create from Python script result\n *\/\n public static function fromPythonResult(array $result): self\n {\n if (isset($result['error'])) {\n return new self(error: $result['error']);\n }\n\n return new self(\n content: $result['content'] ?? '',\n sources: $result['sources'] ?? [],\n versionNumber: $result['version_number'] ?? null,\n );\n }\n\n \/**\n * Create error result\n *\/\n public static function error(string $message): self\n {\n return new self(error: $message);\n }\n\n \/**\n * Convert to array for view rendering\n *\/\n public function toArray(): array\n {\n return [\n 'content' => $this->content,\n 'sources' => $this->sources,\n 'version_number' => $this->versionNumber,\n 'error' => $this->error,\n ];\n }\n}\n",
"structuredPatch": [
{
"oldStart": 1,
"oldLines": 10,
"newStart": 1,
"newLines": 11,
"lines": [
" <?php",
" ",
"+declare(strict_types=1);",
"+",
" namespace UseCases\\Content;",
" ",
"-\/**",
"- * ContentGenerationResult - DTO for content generation results",
"- *\/",
"+\/\/ @responsibility: Ergebnisobjekt für Content-Generierung",
"+",
" final class ContentGenerationResult",
" {",
" public function __construct("
]
}
],
"userModified": false,
"replaceAll": false
}
}