diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-05-03 09:39:34 +0200 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-05-03 09:39:34 +0200 |
commit | e9023a16eba20655965b658ce4dbb2229dfe2546 (patch) | |
tree | 8a0e9b25c71befcf422ed707f8df66155186f02c | |
parent | 2a007fe43d937043c2c41b011f98652bd6e138a7 (diff) | |
download | wallabag-e9023a16eba20655965b658ce4dbb2229dfe2546.tar.gz wallabag-e9023a16eba20655965b658ce4dbb2229dfe2546.tar.zst wallabag-e9023a16eba20655965b658ce4dbb2229dfe2546.zip |
Remove useless method
-rw-r--r-- | src/Wallabag/CoreBundle/Repository/TagRepository.php | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/TagRepository.php b/src/Wallabag/CoreBundle/Repository/TagRepository.php index c567317e..abf915fe 100644 --- a/src/Wallabag/CoreBundle/Repository/TagRepository.php +++ b/src/Wallabag/CoreBundle/Repository/TagRepository.php | |||
@@ -7,20 +7,6 @@ use Doctrine\ORM\EntityRepository; | |||
7 | class TagRepository extends EntityRepository | 7 | class TagRepository extends EntityRepository |
8 | { | 8 | { |
9 | /** | 9 | /** |
10 | * Return only the QueryBuilder to retrieve all tags for a given user. | ||
11 | * | ||
12 | * @param int $userId | ||
13 | * | ||
14 | * @return QueryBuilder | ||
15 | */ | ||
16 | private function getQbForAllTags($userId) | ||
17 | { | ||
18 | return $this->createQueryBuilder('t') | ||
19 | ->leftJoin('t.entries', 'e') | ||
20 | ->where('e.user = :userId')->setParameter('userId', $userId); | ||
21 | } | ||
22 | |||
23 | /** | ||
24 | * Find Tags. | 10 | * Find Tags. |
25 | * | 11 | * |
26 | * @param int $userId | 12 | * @param int $userId |
@@ -29,7 +15,9 @@ class TagRepository extends EntityRepository | |||
29 | */ | 15 | */ |
30 | public function findAllTags($userId) | 16 | public function findAllTags($userId) |
31 | { | 17 | { |
32 | return $this->getQbForAllTags($userId) | 18 | return $this->createQueryBuilder('t') |
19 | ->leftJoin('t.entries', 'e') | ||
20 | ->where('e.user = :userId')->setParameter('userId', $userId) | ||
33 | ->getQuery() | 21 | ->getQuery() |
34 | ->getResult(); | 22 | ->getResult(); |
35 | } | 23 | } |