From b885eb1ac9223f81e357b82c0480b7ac457d5d2f Mon Sep 17 00:00:00 2001 From: Ruben Date: Sun, 4 Sep 2016 17:26:06 +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 0775ad4..90194d6 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 score ASC" ) ->setMaxResults(1) ->setParameters([