aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2016-06-25 19:25:50 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-08-23 07:26:58 +0200
commit9bf83f1fb8d588b871a5d12289179de087756d02 (patch)
tree990854d3dd7944015f54d2dad73a822331d9bf0d /src/Wallabag/CoreBundle/Repository/EntryRepository.php
parent4da01f492b20312461d3f4f612a98e3b52c76fa9 (diff)
downloadwallabag-9bf83f1fb8d588b871a5d12289179de087756d02.tar.gz
wallabag-9bf83f1fb8d588b871a5d12289179de087756d02.tar.zst
wallabag-9bf83f1fb8d588b871a5d12289179de087756d02.zip
CS
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/EntryRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index 63c4c3be..fada40bb 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -223,13 +223,13 @@ class EntryRepository extends EntityRepository
223 } 223 }
224 224
225 /** 225 /**
226 * Remove tags from all user entries 226 * Remove tags from all user entries.
227 * 227 *
228 * @param int $userId 228 * @param int $userId
229 * @param Array<Tag> $tags 229 * @param Array<Tag> $tags
230 */ 230 */
231 231 public function removeTags($userId, $tags)
232 public function removeTags($userId, $tags) { 232 {
233 foreach ($tags as $tag) { 233 foreach ($tags as $tag) {
234 $this->removeTag($userId, $tag); 234 $this->removeTag($userId, $tag);
235 } 235 }