Owl\Services\CommentService::updateComment PHP Method

updateComment() public method

Update a comment's body.
public updateComment ( $id, $body ) : Illuminate\Database\Eloquent\Model
$id int
$body string
return Illuminate\Database\Eloquent\Model
    public function updateComment($id, $body)
    {
        return $this->commentRepo->updateComment($id, $body);
    }