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