Fix typo & CS

This commit is contained in:
Jeremy Benoist
2019-06-05 17:09:05 +02:00
parent ad51743e8b
commit 0f2d24feb4
2 changed files with 5 additions and 4 deletions

View File

@ -131,15 +131,16 @@ class EntryRepository extends EntityRepository
/**
* Retrieve the number of untagged entries for a user.
*
*
* @param int $userId
*
*
* @return int
*/
public function countUntaggedEntriesByUser($userId)
{
return $this->getRawBuilderForUntaggedByUser($userId)
return (int) $this->getRawBuilderForUntaggedByUser($userId)
->select('count(e.id)')
->getQuery()
->getSingleScalarResult();
}