{
"event": "PostToolUse",
"tool_name": "Read",
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Domain\/ValueObject\/MappingSource.php",
"content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace Domain\\ValueObject;\n\n\/\/ @responsibility: Quelle eines Taxonomie-Mappings (automatisch vs. manuell)\n\nenum MappingSource: string\n{\n case AUTO = 'auto';\n case MANUAL = 'manual';\n\n public function isAutomatic(): bool\n {\n return $this === self::AUTO;\n }\n\n public function isManual(): bool\n {\n return $this === self::MANUAL;\n }\n\n public function label(): string\n {\n return match ($this) {\n self::AUTO => 'Automatisch',\n self::MANUAL => 'Manuell',\n };\n }\n}\n",
"numLines": 32,
"startLine": 1,
"totalLines": 32
}
}
}