]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Entity/Tag.php
remove tag from entry #1377
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Entity / Tag.php
index c1940e99b29f4723196fc4f8665e2a9da68cf087..a6e2d023b8b008ef14da4ac396a917adab1f8820 100644 (file)
@@ -107,4 +107,14 @@ class Tag
     {
         return $this->entries->contains($entry);
     }
+
+    /**
+     * Get entries for this tag.
+     *
+     * @return ArrayCollection<Entry>
+     */
+    public function getEntries()
+    {
+        return $this->entries;
+    }
 }