From 456c9d6351b029cfe33f163a75da97094a5ee07c Mon Sep 17 00:00:00 2001 From: Ruben Date: Sun, 4 Sep 2016 17:27:04 +0100 Subject: [PATCH] try game hints --- src/Models/HitRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Models/HitRepository.php b/src/Models/HitRepository.php index 90194d6..b9585f4 100644 --- a/src/Models/HitRepository.php +++ b/src/Models/HitRepository.php @@ -9,7 +9,7 @@ class HitRepository extends EntityRepository public function getBetterHit(Hit $hit) { // we want only the slightly better hit... $query = $this->_em->createQuery( - "SELECT h FROM ".Hit::class." h WHERE h.target = :target AND h.score > :score ORDER BY score ASC" + "SELECT h FROM ".Hit::class." h WHERE h.target = :target AND h.score > :score ORDER BY h.score ASC" ) ->setMaxResults(1) ->setParameters([