]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Repository/EntryRepository.php
CS
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Repository / EntryRepository.php
index 63c4c3be9f0f21f021a2c9d010f9fb3085499439..fada40bbd4c5c8e24010c0b2140e23a6b03ecb35 100644 (file)
@@ -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<Tag> $tags
      */
-
-    public function removeTags($userId, $tags) {
+    public function removeTags($userId, $tags)
+    {
         foreach ($tags as $tag) {
             $this->removeTag($userId, $tag);
         }