aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/TagController.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2019-06-05 17:09:05 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-06-05 17:09:05 +0200
commit0f2d24feb4709bf0ea97e6152e8a607aaa3c1c72 (patch)
treea18d8487f61a947acddb397a0734e902e6399313 /src/Wallabag/CoreBundle/Controller/TagController.php
parentad51743e8bd15782a25c5e717c87786d34091ce3 (diff)
downloadwallabag-0f2d24feb4709bf0ea97e6152e8a607aaa3c1c72.tar.gz
wallabag-0f2d24feb4709bf0ea97e6152e8a607aaa3c1c72.tar.zst
wallabag-0f2d24feb4709bf0ea97e6152e8a607aaa3c1c72.zip
Fix typo & CS
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/TagController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/TagController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/TagController.php b/src/Wallabag/CoreBundle/Controller/TagController.php
index bd50de7f..91f34b3d 100644
--- a/src/Wallabag/CoreBundle/Controller/TagController.php
+++ b/src/Wallabag/CoreBundle/Controller/TagController.php
@@ -88,7 +88,7 @@ class TagController extends Controller
88 $tags = $this->get('wallabag_core.tag_repository') 88 $tags = $this->get('wallabag_core.tag_repository')
89 ->findAllFlatTagsWithNbEntries($this->getUser()->getId()); 89 ->findAllFlatTagsWithNbEntries($this->getUser()->getId());
90 $untagged = $this->get('wallabag_core.entry_repository') 90 $untagged = $this->get('wallabag_core.entry_repository')
91 ->countUntaggedEntriesForUser($this->getUser()->getId()); 91 ->countUntaggedEntriesByUser($this->getUser()->getId());
92 92
93 $renameForms = []; 93 $renameForms = [];
94 foreach ($tags as $tag) { 94 foreach ($tags as $tag) {