date-poll-api/src/Repository/StackOfVotesRepository.php

49 lines
1.2 KiB
PHP
Raw Permalink Normal View History

2019-11-11 10:44:19 +01:00
<?php
namespace App\Repository;
use App\Entity\StackOfVotes;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
2021-04-28 18:40:04 +02:00
use Doctrine\Persistence\ManagerRegistry;
2019-11-11 10:44:19 +01:00
/**
2021-04-27 10:22:16 +02:00
* @method StackOfVotes|null find( $id, $lockMode = null, $lockVersion = null )
* @method StackOfVotes|null findOneBy( array $criteria, array $orderBy = null )
2019-11-11 10:44:19 +01:00
* @method StackOfVotes[] findAll()
2021-04-27 10:22:16 +02:00
* @method StackOfVotes[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
2019-11-11 10:44:19 +01:00
*/
2021-04-27 10:22:16 +02:00
class StackOfVotesRepository extends ServiceEntityRepository {
public function __construct( ManagerRegistry $registry ) {
parent::__construct( $registry, StackOfVotes::class );
}
2019-11-11 10:44:19 +01:00
2021-04-27 10:22:16 +02:00
// /**
// * @return StackOfVotes[] Returns an array of StackOfVotes objects
// */
/*
public function findByExampleField($value)
{
return $this->createQueryBuilder('s')
->andWhere('s.exampleField = :val')
->setParameter('val', $value)
->orderBy('s.id', 'ASC')
->setMaxResults(10)
->getQuery()
->getResult()
;
}
*/
2019-11-11 10:44:19 +01:00
2021-04-27 10:22:16 +02:00
/*
public function findOneBySomeField($value): ?StackOfVotes
{
return $this->createQueryBuilder('s')
->andWhere('s.exampleField = :val')
->setParameter('val', $value)
->getQuery()
->getOneOrNullResult()
;
}
*/
2019-11-11 10:44:19 +01:00
}