* * @method Email|null find($id, $lockMode = null, $lockVersion = null) * @method Email|null findOneBy(array $criteria, array $orderBy = null) * @method Email[] findAll() * @method Email[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class EmailRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Email::class); } // /** // * @return Email[] Returns an array of Email objects // */ // public function findByExampleField($value): array // { // return $this->createQueryBuilder('e') // ->andWhere('e.exampleField = :val') // ->setParameter('val', $value) // ->orderBy('e.id', 'ASC') // ->setMaxResults(10) // ->getQuery() // ->getResult() // ; // } // public function findOneBySomeField($value): ?Email // { // return $this->createQueryBuilder('e') // ->andWhere('e.exampleField = :val') // ->setParameter('val', $value) // ->getQuery() // ->getOneOrNullResult() // ; // } }