| Fey-ORM-Mock documentation | Contained in the Fey-ORM-Mock distribution. |
Fey::ORM::Mock::Action::Delete - A record of a deletion
version 0.05
This class represents a record of a call to delete() for a
Fey::ORM::Table based object.
This class provides the following methods:
Returns the primary key of the row deleted as a hash reference, with the attribute names as keys.
Dave Rolsky <autarch@urth.org>
This software is Copyright (c) 2010 by Dave Rolsky.
This is free software, licensed under:
The Artistic License 2.0
| Fey-ORM-Mock documentation | Contained in the Fey-ORM-Mock distribution. |
package Fey::ORM::Mock::Action::Delete; BEGIN { $Fey::ORM::Mock::Action::Delete::VERSION = '0.05'; } use strict; use warnings; use Moose; use MooseX::StrictConstructor; extends 'Fey::ORM::Mock::Action'; has 'pk' => ( is => 'ro', isa => 'HashRef[Value]', required => 1, ); no Moose; __PACKAGE__->meta()->make_immutable(); 1; # ABSTRACT: A record of a deletion
__END__