/**
  * Delete comment by id
  *
  * @param $id
  * @return mixed
  * @throws NotFoundException
  */
 public function delete($id)
 {
     $comment = $this->findByCommentId($id);
     return $this->comment->delete($comment['id']);
 }