{
"event": "PreToolUse",
"tool_name": "Edit",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/UseCases\/Task\/DeleteTaskUseCase.php",
"old_string": "use Infrastructure\\Persistence\\TaskRepository;\n\nclass DeleteTaskUseCase\n{\n private TaskRepository $taskRepository;\n\n public function __construct(?TaskRepository $taskRepository = null)\n {\n $this->taskRepository = $taskRepository ?? new TaskRepository();\n }",
"new_string": "use Domain\\Repository\\TaskRepositoryInterface;\n\nclass DeleteTaskUseCase\n{\n public function __construct(\n private TaskRepositoryInterface $taskRepository\n ) {}"
}
}
{
"tool_response": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/UseCases\/Task\/DeleteTaskUseCase.php",
"oldString": "use Infrastructure\\Persistence\\TaskRepository;\n\nclass DeleteTaskUseCase\n{\n private TaskRepository $taskRepository;\n\n public function __construct(?TaskRepository $taskRepository = null)\n {\n $this->taskRepository = $taskRepository ?? new TaskRepository();\n }",
"newString": "use Domain\\Repository\\TaskRepositoryInterface;\n\nclass DeleteTaskUseCase\n{\n public function __construct(\n private TaskRepositoryInterface $taskRepository\n ) {}",
"originalFile": "<?php\n\ndeclare(strict_types=1);\n\nnamespace UseCases\\Task;\n\n\/\/ @responsibility: Löscht Tasks nach Validierung der Subtask-Abhängigkeiten\n\nuse Infrastructure\\Persistence\\TaskRepository;\n\nclass DeleteTaskUseCase\n{\n private TaskRepository $taskRepository;\n\n public function __construct(?TaskRepository $taskRepository = null)\n {\n $this->taskRepository = $taskRepository ?? new TaskRepository();\n }\n\n public function execute(int $taskId): bool\n {\n $task = $this->taskRepository->find($taskId);\n if ($task === null) {\n throw new \\InvalidArgumentException(\"Task {$taskId} not found\");\n }\n\n $subtasks = $this->taskRepository->findSubtasks($taskId);\n if (count($subtasks) > 0) {\n throw new \\InvalidArgumentException(\n 'Cannot delete task with subtasks. Delete subtasks first or use cascade delete.'\n );\n }\n\n return $this->taskRepository->delete($taskId);\n }\n\n public function executeCascade(int $taskId): int\n {\n $task = $this->taskRepository->find($taskId);\n if ($task === null) {\n throw new \\InvalidArgumentException(\"Task {$taskId} not found\");\n }\n\n $deleted = 0;\n\n $subtasks = $this->taskRepository->findSubtasks($taskId);\n foreach ($subtasks as $subtask) {\n $deleted += $this->executeCascade($subtask->getId());\n }\n\n $this->taskRepository->delete($taskId);\n $deleted++;\n\n return $deleted;\n }\n}\n",
"structuredPatch": [
{
"oldStart": 6,
"oldLines": 17,
"newStart": 6,
"newLines": 14,
"lines": [
" ",
" \/\/ @responsibility: Löscht Tasks nach Validierung der Subtask-Abhängigkeiten",
" ",
"-use Infrastructure\\Persistence\\TaskRepository;",
"+use Domain\\Repository\\TaskRepositoryInterface;",
" ",
" class DeleteTaskUseCase",
" {",
"- private TaskRepository $taskRepository;",
"+ public function __construct(",
"+ private TaskRepositoryInterface $taskRepository",
"+ ) {}",
" ",
"- public function __construct(?TaskRepository $taskRepository = null)",
"- {",
"- $this->taskRepository = $taskRepository ?? new TaskRepository();",
"- }",
"-",
" public function execute(int $taskId): bool",
" {",
" $task = $this->taskRepository->find($taskId);"
]
}
],
"userModified": false,
"replaceAll": false
}
}