From 55cb647511c9b7d2b57d851d9fc7d3d1cda20027 Mon Sep 17 00:00:00 2001 From: Alexander Kozlov Date: Tue, 17 Nov 2020 15:04:27 +0300 Subject: [PATCH] Fixed typo in AccountManager --- Service/AccountManager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Service/AccountManager.php b/Service/AccountManager.php index 97d7f44..99f7441 100644 --- a/Service/AccountManager.php +++ b/Service/AccountManager.php @@ -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') ; }