*/ 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); } }