aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
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 }