try game hints

This commit is contained in:
Ruben 2016-09-04 17:27:04 +01:00
parent b885eb1ac9
commit 456c9d6351

View file

@ -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([