feat(directory) : add ReportDocument storage (entity, upload processor, download, cleanup)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user