]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Repository/EntryRepository.php
Merge pull request #4152 from ldidry/add-env-var-dev.sh
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Repository / EntryRepository.php
index 77d88c9c25e73f1e98f670559d6ec98ac97cedc5..bfd079377ac783bdd4c2e0e2f84cb3f2e9d0496b 100644 (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();
     }
 
@@ -305,7 +306,6 @@ class EntryRepository extends EntityRepository
      * DELETE et FROM entry_tag et WHERE et.entry_id IN ( SELECT e.id FROM entry e WHERE e.user_id = :userId ) AND et.tag_id = :tagId
      *
      * @param int $userId
-     * @param Tag $tag
      */
     public function removeTag($userId, Tag $tag)
     {
@@ -564,9 +564,8 @@ class EntryRepository extends EntityRepository
     /**
      * Return the given QueryBuilder with an orderBy() call.
      *
-     * @param QueryBuilder $qb
-     * @param string       $sortBy
-     * @param string       $direction
+     * @param string $sortBy
+     * @param string $direction
      *
      * @return QueryBuilder
      */