Merge pull request #11 from pm14kas/fix-entity-manager-in-commands
Fixed typo in AccountManager
This commit is contained in:
commit
88bed1d52e
@ -56,8 +56,8 @@ class AccountManager
|
|||||||
public function getActiveQueryBuilder()
|
public function getActiveQueryBuilder()
|
||||||
{
|
{
|
||||||
return $this->getRepository()->createQueryBuilder('account')
|
return $this->getRepository()->createQueryBuilder('account')
|
||||||
->where('account.isActive IS TRUE')
|
->where('account.active = true')
|
||||||
->andWhere('account.isFreeze IS NOT TRUE')
|
->andWhere('account.freeze != true')
|
||||||
->orderBy('account.id')
|
->orderBy('account.id')
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user