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