From 4dc872238a61f33c886c423c5812cc578b3b1cdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Fri, 26 Feb 2016 13:59:08 +0100 Subject: Rename CommentBundle with AnnotationBundle --- src/Wallabag/CommentBundle/Entity/Comment.php | 270 -------------------------- 1 file changed, 270 deletions(-) delete mode 100644 src/Wallabag/CommentBundle/Entity/Comment.php (limited to 'src/Wallabag/CommentBundle/Entity') diff --git a/src/Wallabag/CommentBundle/Entity/Comment.php b/src/Wallabag/CommentBundle/Entity/Comment.php deleted file mode 100644 index a89a2cb3..00000000 --- a/src/Wallabag/CommentBundle/Entity/Comment.php +++ /dev/null @@ -1,270 +0,0 @@ -user = $user; - } - - /** - * Get id. - * - * @return int - */ - public function getId() - { - return $this->id; - } - - /** - * Set text. - * - * @param string $text - * - * @return Comment - */ - public function setText($text) - { - $this->text = $text; - - return $this; - } - - /** - * Get text. - * - * @return string - */ - public function getText() - { - return $this->text; - } - - /** - * @ORM\PrePersist - * @ORM\PreUpdate - */ - public function timestamps() - { - if (is_null($this->createdAt)) { - $this->createdAt = new \DateTime(); - } - $this->updatedAt = new \DateTime(); - } - - /** - * Get created. - * - * @return \DateTime - */ - public function getCreatedAt() - { - return $this->createdAt; - } - - /** - * Get updated. - * - * @return \DateTime - */ - public function getUpdatedAt() - { - return $this->updatedAt; - } - - /** - * Get quote. - * - * @return string - */ - public function getQuote() - { - return $this->quote; - } - - /** - * Set quote. - * - * @param string $quote - * - * @return Comment - */ - public function setQuote($quote) - { - $this->quote = $quote; - - return $this; - } - - /** - * Get ranges. - * - * @return array - */ - public function getRanges() - { - return $this->ranges; - } - - /** - * Set ranges. - * - * @param array $ranges - * - * @return Comment - */ - public function setRanges($ranges) - { - $this->ranges = $ranges; - - return $this; - } - - /** - * Set user. - * - * @param string $user - * - * @return Comment - */ - public function setUser($user) - { - $this->user = $user; - - return $this; - } - - /** - * Get user. - * - * @return string - */ - public function getUser() - { - return $this->user; - } - - /** - * @VirtualProperty - * @SerializedName("user") - */ - public function getUserName() - { - return $this->user->getName(); - } - - /** - * Set entry. - * - * @param Entry $entry - * - * @return Comment - */ - public function setEntry($entry) - { - $this->entry = $entry; - $entry->setComment($this); - - return $this; - } - - /** - * Get entry. - * - * @return Entry - */ - public function getEntry() - { - return $this->entry; - } - - /** - * @VirtualProperty - * @SerializedName("annotator_schema_version") - */ - public function getVersion() - { - return 'v1.0'; - } -} -- cgit v1.2.3