Compare commits

..

No commits in common. "be4a2038e5cd05ef128181468e43b08851666a29" and "784037de6f756901960b5c4d5b7202a326d78eb1" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ use MapGuesser\Interfaces\Response\IContent;
use MapGuesser\PersistentData\Model\Challenge;
use MapGuesser\PersistentData\Model\Map;
use MapGuesser\PersistentData\Model\Place;
use MapGuesser\PersistentData\Model\PlaceInChallenge;
use MapGuesser\PersistentData\PersistentDataManager;
use MapGuesser\Repository\ChallengeRepository;
use MapGuesser\Repository\GuessRepository;

View File

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