aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Reaction/Types/DBIC.pm
blob: 279e191d4b9bffcf482bb54902c36325885ad0d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package Reaction::Types::DBIC;

use Moose::Util::TypeConstraints;

use DBIx::Class::ResultSet;

subtype 'DBIx::Class::ResultSet'
  => as 'Object'
  => where { $_->isa('DBIx::Class::ResultSet') };

use DBIx::Class::Core;
use DBIx::Class::Row;

subtype 'DBIx::Class::Row'
  => as 'Object'
  => where { $_->isa('DBIx::Class::Row') };

1;

=head1 NAME

Reaction::Types::DBIC

=head1 DESCRIPTION

=over 

=item * DBIx::Class::ResultSet

=item * DBIx::Class::Row

=back

=head1 SEE ALSO

=over

=item * L<Reaction::Types::Core>

=back

=head1 AUTHORS

See L<Reaction::Class> for authors.

=head1 LICENSE

See L<Reaction::Class> for the license.

=cut