Senph::Model::Comment
sub _do_create { my ( $self, $site, $topic, $reply_to, $comment_data ) = @_; ... my $comment = Senph::Object::Comment->new( $comment_data->%* ); $self->mail_queue->create_notify_new_comment({ topic => $topic, comment => $comment, }); return $comment; }