From: Nicolas LÅ“uillet Date: Mon, 9 Feb 2015 14:07:48 +0000 (+0100) Subject: restore TagsEntries X-Git-Tag: 2.0.0-alpha.0~84^2~1 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=970c40bb939b0c2bfe8a4b6ac3937eb344bbcc4f;p=github%2Fwallabag%2Fwallabag.git restore TagsEntries --- diff --git a/src/Wallabag/CoreBundle/Entity/TagsEntries.php b/src/Wallabag/CoreBundle/Entity/TagsEntries.php new file mode 100644 index 00000000..6b0cea0d --- /dev/null +++ b/src/Wallabag/CoreBundle/Entity/TagsEntries.php @@ -0,0 +1,93 @@ +id; + } + + /** + * Set entryId + * + * @param integer $entryId + * @return TagsEntries + */ + public function setEntryId($entryId) + { + $this->entryId = $entryId; + + return $this; + } + + /** + * Get entryId + * + * @return integer + */ + public function getEntryId() + { + return $this->entryId; + } + + /** + * Set tagId + * + * @param integer $tagId + * @return TagsEntries + */ + public function setTagId($tagId) + { + $this->tagId = $tagId; + + return $this; + } + + /** + * Get tagId + * + * @return integer + */ + public function getTagId() + { + return $this->tagId; + } +}