Model/TagInterface.php
changeset 14 673b2766024e
parent 5 45378793512a
child 42 0e57c730bb18
--- a/Model/TagInterface.php	Tue Oct 25 12:20:47 2011 +0200
+++ b/Model/TagInterface.php	Wed Oct 26 15:38:05 2011 +0200
@@ -11,6 +11,8 @@
 namespace IRI\Bundle\WikiTagBundle\Model;
 
 
+use Doctrine\Common\Collections\ArrayCollection;
+
 interface TagInterface {
     
     /**
@@ -169,5 +171,18 @@
      */
     function getCategory();
     
+    /**
+     * Get Documents
+     *
+     * @return ArrayCollection
+     */
+    function getDocuments();
+    
+    /**
+     * Nullify category
+     *
+     */
+    function nullCategory();
+    
     
 }
\ No newline at end of file