Post and Comment small fixes.

This commit is contained in:
Alexey Skobkin 2016-03-29 07:43:23 +03:00
parent 11c1f8b6ab
commit 6d10b6dac1
2 changed files with 1 additions and 13 deletions

View File

@ -344,19 +344,6 @@ class Comment
return $this->deleted;
}
/**
* Set id
*
* @param integer $id
* @return Comment
*/
public function setId($id)
{
$this->id = $id;
return $this;
}
/**
* Add children
*

View File

@ -363,6 +363,7 @@ class Post
public function addComment(Comment $comment)
{
$this->comments[] = $comment;
$comment->setPost($this);
return $this;
}