bugfix/MAPG-240-fix-static-code-analysis-errors #49

Merged
bence merged 2 commits from bugfix/MAPG-240-fix-static-code-analysis-errors into develop 2021-05-29 10:22:20 +02:00
Showing only changes of commit f305c97513 - Show all commits

View File

@ -76,6 +76,6 @@ class UserInChallengeRepository
$select->where('user_id', '=', $userId);
$select->where('challenge_id', '=', $challenge->getId());
return $select->count();
return $select->count() != 0;
}
}