make Call command not return anything so _merge doesn't try and merge the row count
[dbsrgits/DBIx-Data-Store-old.git] / lib / DBIx / Data / Store / Command / Call.pm
CommitLineData
65b76960 1package DBIx::Data::Store::Command::Call;
2
3use Moose;
4use Method::Signatures::Simple;
5
6method execute {
7 $self->_new_active_sth->rows;
d67a183c 8 return
65b76960 9}
10
11with 'DBIx::Data::Store::Command';
12
13__PACKAGE__->meta->make_immutable;
14
151;