| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function autocomplete($q): mixed |
||
| 21 | { |
||
| 22 | $query = $this->createQueryBuilder('u'); |
||
| 23 | |||
| 24 | $query |
||
| 25 | ->where('u.username LIKE :q') |
||
| 26 | ->setParameter('q', '%' . $q . '%') |
||
| 27 | //->andWhere('u.enabled = 1') |
||
| 28 | ->orderBy('u.username', 'ASC'); |
||
| 29 | |||
| 30 | return $query->getQuery()->getResult(); |
||
| 31 | } |
||
| 49 |