Integration rmq Julien

This commit is contained in:
Marc Ducobu
2021-04-27 11:24:26 +02:00
parent cda32fb925
commit 38ac3badef
9 changed files with 6 additions and 125 deletions

View File

@@ -18,33 +18,4 @@ class ResultRepository extends ServiceEntityRepository
{
parent::__construct($registry, Result::class);
}
// /**
// * @return Result[] Returns an array of Result objects
// */
/*
public function findByExampleField($value)
{
return $this->createQueryBuilder('r')
->andWhere('r.exampleField = :val')
->setParameter('val', $value)
->orderBy('r.id', 'ASC')
->setMaxResults(10)
->getQuery()
->getResult()
;
}
*/
/*
public function findOneBySomeField($value): ?Result
{
return $this->createQueryBuilder('r')
->andWhere('r.exampleField = :val')
->setParameter('val', $value)
->getQuery()
->getOneOrNullResult()
;
}
*/
}