{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Infrastructure\/CodeAnalysis\/PhpFileParser.php",
"limit": 60
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Infrastructure\/CodeAnalysis\/PhpFileParser.php",
"content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace Infrastructure\\CodeAnalysis;\n\n\/\/ @responsibility: PHP-Datei-Strukturanalyse via Tokenizer\n\nfinal class PhpFileParser\n{\n use TokenNavigatorTrait;\n use UseStatementExtractorTrait;\n use InheritanceExtractorTrait;\n use ClassFunctionExtractorTrait;\n\n \/** @var array<string, string> Maps short name to FQCN from use statements *\/\n private array $importMap = [];\n\n \/** @var string|null Current namespace *\/\n private ?string $currentNamespace = null;\n\n \/**\n * Parst eine PHP-Datei und extrahiert Metadaten inkl. Dependencies.\n *\n * @return array{\n * namespace: string|null,\n * classes: array<array{name: string, type: string, line: int}>,\n * functions: array<array{name: string, visibility: string|null, line: int}>,\n * uses: array<string>,\n * extends_class: string|null,\n * implements_interfaces: array<string>,\n * traits_used: array<string>,\n * constructor_deps: array<string>,\n * error: string|null\n * }\n *\/\n public function parse(string $filePath): array\n {\n $this->importMap = [];\n $this->currentNamespace = null;\n\n $result = [\n 'namespace' => null,\n 'classes' => [],\n 'functions' => [],\n 'uses' => [],\n 'extends_class' => null,\n 'implements_interfaces' => [],\n 'traits_used' => [],\n 'constructor_deps' => [],\n 'error' => null,\n ];\n\n if (!file_exists($filePath) || !is_readable($filePath)) {\n $result['error'] = 'Datei nicht lesbar';\n\n return $result;\n }\n\n $content = file_get_contents($filePath);",
"numLines": 60,
"startLine": 1,
"totalLines": 279
}
}
}