mirror of
https://framagit.org/tykayn/date-poll-api
synced 2023-08-25 08:23:11 +02:00
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Repository;
|
||
|
|
||
|
use App\Entity\Owner;
|
||
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
||
|
use Doctrine\Common\Persistence\ManagerRegistry;
|
||
|
|
||
|
/**
|
||
|
* @method Owner|null find($id, $lockMode = null, $lockVersion = null)
|
||
|
* @method Owner|null findOneBy(array $criteria, array $orderBy = null)
|
||
|
* @method Owner[] findAll()
|
||
|
* @method Owner[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
|
||
|
*/
|
||
|
class OwnerRepository extends ServiceEntityRepository
|
||
|
{
|
||
|
public function __construct(ManagerRegistry $registry)
|
||
|
{
|
||
|
parent::__construct($registry, Owner::class);
|
||
|
}
|
||
|
|
||
|
// /**
|
||
|
// * @return Owner[] Returns an array of Owner objects
|
||
|
// */
|
||
|
/*
|
||
|
public function findByExampleField($value)
|
||
|
{
|
||
|
return $this->createQueryBuilder('o')
|
||
|
->andWhere('o.exampleField = :val')
|
||
|
->setParameter('val', $value)
|
||
|
->orderBy('o.id', 'ASC')
|
||
|
->setMaxResults(10)
|
||
|
->getQuery()
|
||
|
->getResult()
|
||
|
;
|
||
|
}
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
public function findOneBySomeField($value): ?Owner
|
||
|
{
|
||
|
return $this->createQueryBuilder('o')
|
||
|
->andWhere('o.exampleField = :val')
|
||
|
->setParameter('val', $value)
|
||
|
->getQuery()
|
||
|
->getOneOrNullResult()
|
||
|
;
|
||
|
}
|
||
|
*/
|
||
|
}
|