* judge sorting

This commit is contained in:
Danyi Dávid 2018-05-12 13:16:30 +02:00
parent 9d790133c6
commit 26c74ec238

View File

@ -30,6 +30,7 @@ class JudgeManager
return $qb->select('j, t')
->from(Judge::class, 'j')
->leftJoin('j.titles', 't')
->orderBy('j.name', 'ASC')
->getQuery()
->getArrayResult();
}