feat(directory) : add Address entity with client/prospect dual ownership

This commit is contained in:
Matthieu
2026-06-22 11:45:05 +02:00
parent e5a64a60c4
commit 8d63735bd8
3 changed files with 221 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\Address;
interface AddressRepositoryInterface
{
public function findById(int $id): ?Address;
}