]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Entity/Tag.php
Update deps
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Entity / Tag.php
index 3ccb20a5c57012cd848df8f705f3bb1f644448f5..9fb2f94fddcf8216e879f80d6e27e5064315d198 100644 (file)
@@ -104,9 +104,6 @@ class Tag
         return $this->slug;
     }
 
-    /**
-     * @param Entry $entry
-     */
     public function addEntry(Entry $entry)
     {
         if ($this->entries->contains($entry)) {
@@ -117,9 +114,6 @@ class Tag
         $entry->addTag($this);
     }
 
-    /**
-     * @param Entry $entry
-     */
     public function removeEntry(Entry $entry)
     {
         if (!$this->entries->contains($entry)) {