Saves a comment.
Drupal\comment\Comment $comment:
function comment_save_action(Comment $comment) {
comment_save($comment);
cache_invalidate_tags(array(
'content' => TRUE,
));
watchdog('action', 'Saved comment %title', array(
'%title' => $comment->subject,
));
}