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