diff -r 8cbd576d6b88 -r 806e57d67020 src/Company/BaseBundle/Entity/Document.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/Company/BaseBundle/Entity/Document.php Wed Sep 28 17:45:50 2011 +0200 @@ -0,0 +1,88 @@ +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; + } +} \ No newline at end of file