remove Dwarn calls
[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 }
9
10 with 'DBIx::Data::Store::Command';
11
12 __PACKAGE__->meta->make_immutable;
13
14 1;