]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Repository/TagRepository.php
Fix some namespaces and phpdoc
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Repository / TagRepository.php
index b78e244ecda63d1ca8834768f1602cb82cbe3488..213283e5d6d8b1da418a2eba536823fc152ec83e 100644 (file)
@@ -3,6 +3,7 @@
 namespace Wallabag\CoreBundle\Repository;
 
 use Doctrine\ORM\EntityRepository;
+use Wallabag\CoreBundle\Entity\Tag;
 
 class TagRepository extends EntityRepository
 {
@@ -77,7 +78,7 @@ class TagRepository extends EntityRepository
             ->getSingleResult();
     }
 
-    public function findTagsForArchivedArticles($userId)
+    public function findForArchivedArticlesByUser($userId)
     {
         $ids = $this->createQueryBuilder('t')
             ->select('t.id')