Show major hint
This commit is contained in:
parent
16b9cb9e68
commit
0201eb1584
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ class HitRepository extends EntityRepository
|
||||||
public function getBetterHit(Hit $hit) {
|
public function getBetterHit(Hit $hit) {
|
||||||
// we want only the slightly better hit...
|
// we want only the slightly better hit...
|
||||||
$query = $this->_em->createQuery(
|
$query = $this->_em->createQuery(
|
||||||
"SELECT h FROM ".Hit::class." h WHERE h.target = :target AND h.score > :score ORDER BY h.score ASC"
|
"SELECT h FROM ".Hit::class." h WHERE h.target = :target AND h.score > :score ORDER BY h.score DESC"
|
||||||
)
|
)
|
||||||
->setMaxResults(1)
|
->setMaxResults(1)
|
||||||
->setParameters([
|
->setParameters([
|
||||||
|
|
Loading…
Reference in a new issue