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