{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/ContentPipelineController.php",
"limit": 50
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/ContentPipelineController.php",
"content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace Controller;\n\n\/\/ @responsibility: HTTP-Endpunkte für Content-Pipeline-Verwaltung\n\nuse Application\\PipelineStepService;\nuse Framework\\Controller;\nuse Infrastructure\\AI\\ModelConfig;\nuse Infrastructure\\Config\\PipelineStepConfig;\nuse Infrastructure\\Persistence\\PipelineRepository;\nuse UseCases\\Pipeline\\PipelineRunStatusUseCase;\nuse UseCases\\Pipeline\\RunPipelineUseCase;\nuse UseCases\\Pipeline\\UpdatePipelineConfigUseCase;\n\nclass ContentPipelineController extends Controller\n{\n private PipelineRepository $repository;\n private PipelineStepService $stepService;\n private RunPipelineUseCase $runUseCase;\n private PipelineRunStatusUseCase $statusUseCase;\n private UpdatePipelineConfigUseCase $configUseCase;\n\n public function __construct(\n PipelineRepository $repository,\n PipelineStepService $stepService,\n RunPipelineUseCase $runUseCase,\n PipelineRunStatusUseCase $statusUseCase,\n UpdatePipelineConfigUseCase $configUseCase\n ) {\n $this->repository = $repository;\n $this->stepService = $stepService;\n $this->runUseCase = $runUseCase;\n $this->statusUseCase = $statusUseCase;\n $this->configUseCase = $configUseCase;\n }\n\n \/**\n * GET \/content-pipeline\n *\/\n public function index(): void\n {\n $this->view('content-pipeline.index', [\n 'title' => 'Content Pipeline',\n 'pipelines' => $this->repository->findAll(),\n 'stats' => $this->repository->getStatistics(),\n ]);\n }",
"numLines": 50,
"startLine": 1,
"totalLines": 368
}
}
}