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
1 package DBIx::Data::Store::Command::Call;
2
3 use Moose;
4 use Method::Signatures::Simple;
5
6 method execute {
7   $self->_new_active_sth->rows;
8   return
9 }
10
11 with 'DBIx::Data::Store::Command';
12
13 __PACKAGE__->meta->make_immutable;
14
15 1;