feat : add task_document migration

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 18:04:14 +01:00
parent 3dd2d39222
commit 8ec98a593a
3 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<?php
declare(strict_types=1);
namespace App\EventListener;
class TaskDocumentListener {}

View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace App\State;
use ApiPlatform\Metadata\Operation;
use ApiPlatform\State\ProcessorInterface;
class TaskDocumentProcessor implements ProcessorInterface
{
public function process(mixed $data, Operation $operation, array $uriVariables = [], array $context = []): mixed
{
return $data;
}
}