X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FRepository%2FEntryRepository.php;h=fada40bbd4c5c8e24010c0b2140e23a6b03ecb35;hb=9bf83f1fb8d588b871a5d12289179de087756d02;hp=63c4c3be9f0f21f021a2c9d010f9fb3085499439;hpb=4da01f492b20312461d3f4f612a98e3b52c76fa9;p=github%2Fwallabag%2Fwallabag.git 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 } /** - * Remove tags from all user entries + * Remove tags from all user entries. * - * @param int $userId + * @param int $userId * @param Array $tags */ - - public function removeTags($userId, $tags) { + public function removeTags($userId, $tags) + { foreach ($tags as $tag) { $this->removeTag($userId, $tag); }