--- a/Model/Document.php Tue Oct 25 12:20:47 2011 +0200
+++ b/Model/Document.php Thu Oct 27 05:51:04 2011 +0200
@@ -10,22 +10,13 @@
namespace IRI\Bundle\WikiTagBundle\Model;
-abstract class Document implements BaseDocumentInterface {
+abstract class Document implements DocumentInterface {
/**
* @var integer $id
*/
protected $id;
- /**
- * @var string $title
- */
- protected $title;
-
- /**
- * @var text $description
- */
- protected $description;
/**
* @var boolean $manualOrder
@@ -48,45 +39,6 @@
return $this->id;
}
- /**
- * Set title
- *
- * @param string $title
- */
- public function setTitle($title)
- {
- $this->title = $title;
- }
-
- /**
- * Get title
- *
- * @return string
- */
- public function getTitle()
- {
- return $this->title;
- }
-
- /**
- * Set description
- *
- * @param text $description
- */
- public function setDescription($description)
- {
- $this->description = $description;
- }
-
- /**
- * Get description
- *
- * @return text
- */
- public function getDescription()
- {
- return $this->description;
- }
/**
* Set manualOrder