This commit is contained in:
Alexey Skobkin 2015-05-31 10:43:24 +03:00
parent d2711f2057
commit cacb676d96
1 changed files with 1 additions and 0 deletions

View File

@ -28,6 +28,7 @@ class UserController extends Controller
->select('u')
->innerJoin('u.subscriptions', 's')
->where('s.author = :author')
->orderBy('u.login', 'asc')
->setParameter('author', $user->getId())
->getQuery()->getResult()
;