--- a/Model/Document.php Fri Oct 28 14:57:11 2011 +0200
+++ b/Model/Document.php Fri Nov 04 11:56:59 2011 +0100
@@ -35,6 +35,11 @@
*/
protected $tags;
+ /**
+ * @var string tagsStr
+ */
+ protected $tagsStr;
+
/**
* Get id
@@ -78,7 +83,7 @@
/**
* TODO: (non-PHPdoc)
- * @see IRI\Bundle\WikiTagBundle\Model.BaseDocumentInterface::getExternalId()
+ * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getExternalId()
*/
function getExternalId()
{
@@ -87,11 +92,30 @@
/**
* TODO: (non-PHPdoc)
- * @see IRI\Bundle\WikiTagBundle\Model.BaseDocumentInterface::getTags()
+ * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTags()
*/
function getTags()
{
return $this->tags;
}
+ /**
+ * TODO: (non-PHPdoc)
+ * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::setTagsStr()
+ */
+ function setTagsStr($tagsStr)
+ {
+ $this->tagsStr = $tagsStr;
+ }
+
+ /**
+ * TODO: (non-PHPdoc)
+ * @see IRI\Bundle\WikiTagBundle\Model.DocumentInterface::getTagsStr()
+ */
+ function getTagsStr()
+ {
+ return $this->tagsStr;
+ }
+
+
}