| Reaction documentation | Contained in the Reaction distribution. |
Reaction::InterfaceModel::Action::DBIC::Result
Base class for actions that apply to DBIC row objects. Extends InterfaceModel::Action
Extends target_model by assigning it a type constraint of
Row.
See Reaction::Class for authors.
See Reaction::Class for the license.
| Reaction documentation | Contained in the Reaction distribution. |
package Reaction::InterfaceModel::Action::DBIC::Result; use Reaction::InterfaceModel::Action; use Reaction::Types::DBIC 'Row'; use Reaction::Class; use namespace::clean -except => [ qw(meta) ]; extends 'Reaction::InterfaceModel::Action'; has '+target_model' => (isa => Row); __PACKAGE__->meta->make_immutable; 1; __END__;