feat(directory) : add ReportDocument storage (entity, upload processor, download, cleanup)

This commit is contained in:
Matthieu
2026-06-22 11:51:53 +02:00
parent 5af529d1b2
commit b9538454a9
6 changed files with 444 additions and 0 deletions
@@ -0,0 +1,12 @@
<?php
declare(strict_types=1);
namespace App\Module\Directory\Domain\Repository;
use App\Module\Directory\Domain\Entity\ReportDocument;
interface ReportDocumentRepositoryInterface
{
public function findById(int $id): ?ReportDocument;
}