{
"event": "PostToolUse",
"tool_name": "Read",
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Domain\/Entity\/Task.php",
"content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace Domain\\Entity;\n\n\/\/ @responsibility: Task-Entität - Rich Domain Model mit Business-Logik\n\nuse Domain\\ValueObject\\TaskStatus;\nuse Domain\\ValueObject\\TaskType;\n\nclass Task\n{\n private ?int $id = null;\n private string $uuid;\n private string $title;\n private ?string $description = null;\n private TaskType $type;\n private TaskStatus $status;\n private string $createdBy;\n private string $createdByType = 'human';\n private ?int $parentTaskId = null;\n private ?\\DateTimeImmutable $dueDate = null;\n private \\DateTimeImmutable $createdAt;\n private \\DateTimeImmutable $updatedAt;\n private ?\\DateTimeImmutable $completedAt = null;\n \/** @var array<string, mixed> *\/\n private array $metadata = [];\n\n private function __construct()\n {\n $this->uuid = $this->generateUuid();\n $this->status = TaskStatus::PENDING;\n $this->type = TaskType::HUMAN_TASK;\n $this->createdAt = new \\DateTimeImmutable();\n $this->updatedAt = new \\DateTimeImmutable();\n }\n\n public static function create(\n string $title,\n string $createdBy,\n ?string $description = null,\n ?TaskType $type = null,\n ?int $parentTaskId = null,\n ?\\DateTimeImmutable $dueDate = null\n ): self {\n $task = new self();\n $task->title = $title;\n $task->createdBy = $createdBy;\n $task->description = $description;\n\n if ($type !== null) {\n $task->type = $type;\n }\n\n if ($parentTaskId !== null) {\n $task->parentTaskId = $parentTaskId;\n }\n\n if ($dueDate !== null) {\n $task->dueDate = $dueDate;\n }\n\n return $task;\n }\n\n private function generateUuid(): string\n {\n return sprintf(\n '%04x%04x-%04x-%04x-%04x-%04x%04x%04x',\n mt_rand(0, 0xffff),\n mt_rand(0, 0xffff),\n mt_rand(0, 0xffff),\n mt_rand(0, 0x0fff) | 0x4000,\n mt_rand(0, 0x3fff) | 0x8000,\n mt_rand(0, 0xffff),\n mt_rand(0, 0xffff),\n mt_rand(0, 0xffff)\n );\n }\n\n public function getId(): ?int\n {\n return $this->id;\n }\n\n public function getUuid(): string\n {\n return $this->uuid;\n }\n\n public function getTitle(): string\n {\n return $this->title;\n }\n\n public function getDescription(): ?string\n {\n return $this->description;\n }",
"numLines": 100,
"startLine": 1,
"totalLines": 347
}
}
}