1
0
Fork 0
mirror of synced 2025-04-07 07:13:33 +03:00

Fixed typo in AccountManager

This commit is contained in:
Alexander Kozlov 2020-11-17 15:04:27 +03:00
parent 5ebe43db31
commit 55cb647511

View file

@ -56,8 +56,8 @@ class AccountManager
public function getActiveQueryBuilder()
{
return $this->getRepository()->createQueryBuilder('account')
->where('account.isActive IS TRUE')
->andWhere('account.isFreeze IS NOT TRUE')
->where('account.active = true')
->andWhere('account.freeze != true')
->orderBy('account.id')
;
}