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 GoalRepository extends ServiceEntityRepository
{
parent::__construct($registry, Goal::class);
}
// /**
// * @return Goal[] Returns an array of Goal objects
// */
/*
public function findByExampleField($value)
{
return $this->createQueryBuilder('g')
->andWhere('g.exampleField = :val')
->setParameter('val', $value)
->orderBy('g.id', 'ASC')
->setMaxResults(10)
->getQuery()
->getResult()
;
}
*/
/*
public function findOneBySomeField($value): ?Goal
{
return $this->createQueryBuilder('g')
->andWhere('g.exampleField = :val')
->setParameter('val', $value)
->getQuery()
->getOneOrNullResult()
;
}
*/
}