Senph::Model::Comment
my $comment = Senph::Object::Comment->new( $comment_data->%* ); if ($reply_to) { push( $reply_to->comments->@*, $comment ); } else { push( $topic->comments->@*, $comment ); } $self->store->store_topic($topic); return $comment; }