diff --git a/lib/Trello/Event/CardCommentEvent.php b/lib/Trello/Event/CardCommentEvent.php index a26bc69..c10de75 100644 --- a/lib/Trello/Event/CardCommentEvent.php +++ b/lib/Trello/Event/CardCommentEvent.php @@ -2,29 +2,27 @@ namespace Trello\Event; -use Trello\Model\CommentInterface; - class CardCommentEvent extends CardEvent { /** - * @var CommentInterface + * @var string */ protected $comment; /** * Set comment * - * @param CommentInterface $comment + * @param string $text */ - public function setComment(CommentInterface $comment) + public function setComment($text) { - $this->comment = $comment; + $this->comment = $text; } /** * Get comment * - * @return CommentInterface + * @return string */ public function getComment() {