2019-11-06 14:35:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Repository;
|
|
|
|
|
|
|
|
use App\Entity\Choice;
|
|
|
|
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
|
2021-04-28 18:40:04 +02:00
|
|
|
use Doctrine\Persistence\ManagerRegistry;
|
2019-11-06 14:35:07 +01:00
|
|
|
|
|
|
|
/**
|
2021-04-27 10:22:16 +02:00
|
|
|
* @method Choice|null find( $id, $lockMode = null, $lockVersion = null )
|
|
|
|
* @method Choice|null findOneBy( array $criteria, array $orderBy = null )
|
2019-11-06 14:35:07 +01:00
|
|
|
* @method Choice[] findAll()
|
2021-04-27 10:22:16 +02:00
|
|
|
* @method Choice[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
|
2019-11-06 14:35:07 +01:00
|
|
|
*/
|
2021-04-27 10:22:16 +02:00
|
|
|
class ChoiceRepository extends ServiceEntityRepository {
|
|
|
|
public function __construct( ManagerRegistry $registry ) {
|
|
|
|
parent::__construct( $registry, Choice::class );
|
|
|
|
}
|
2019-11-06 14:35:07 +01:00
|
|
|
|
|
|
|
}
|