27 lines
709 B
PHP
27 lines
709 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Module\Directory\Infrastructure\Doctrine;
|
|
|
|
use App\Module\Directory\Domain\Entity\Contact;
|
|
use App\Module\Directory\Domain\Repository\ContactRepositoryInterface;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<Contact>
|
|
*/
|
|
final class DoctrineContactRepository extends ServiceEntityRepository implements ContactRepositoryInterface
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, Contact::class);
|
|
}
|
|
|
|
public function findById(int $id): ?Contact
|
|
{
|
|
return $this->find($id);
|
|
}
|
|
}
|