49 lines
1.5 KiB
PHP
49 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace DMD\LaLigaApi\Repository;
|
|
|
|
use DMD\LaLigaApi\Entity\Notification;
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
|
use Doctrine\Persistence\ManagerRegistry;
|
|
|
|
/**
|
|
* @extends ServiceEntityRepository<Notification>
|
|
*
|
|
* @method Notification|null find($id, $lockMode = null, $lockVersion = null)
|
|
* @method Notification|null findOneBy(array $criteria, array $orderBy = null)
|
|
* @method Notification[] findAll()
|
|
* @method Notification[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
|
*/
|
|
class NotificationRepository extends ServiceEntityRepository
|
|
{
|
|
public function __construct(ManagerRegistry $registry)
|
|
{
|
|
parent::__construct($registry, Notification::class);
|
|
}
|
|
|
|
// /**
|
|
// * @return Notification[] Returns an array of Notification objects
|
|
// */
|
|
// public function findByExampleField($value): array
|
|
// {
|
|
// return $this->createQueryBuilder('n')
|
|
// ->andWhere('n.exampleField = :val')
|
|
// ->setParameter('val', $value)
|
|
// ->orderBy('n.id', 'ASC')
|
|
// ->setMaxResults(10)
|
|
// ->getQuery()
|
|
// ->getResult()
|
|
// ;
|
|
// }
|
|
|
|
// public function findOneBySomeField($value): ?Notification
|
|
// {
|
|
// return $this->createQueryBuilder('n')
|
|
// ->andWhere('n.exampleField = :val')
|
|
// ->setParameter('val', $value)
|
|
// ->getQuery()
|
|
// ->getOneOrNullResult()
|
|
// ;
|
|
// }
|
|
}
|