Renamed DBIx::Class::PK's retrieve() as find()
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
223b8fe3 5no warnings 'qw';
ea2e61bf 6
126042ee 7use base qw/DBIx::Class/;
8
9__PACKAGE__->load_components(qw/
10 Relationship::Accessor
11 Relationship::CascadeActions
12 Relationship::ProxyMethods
13 Relationship
14 InflateColumn
223b8fe3 15 #SQL::OrderBy
126042ee 16 SQL::Abstract
17 PK
18 Table
126042ee 19 Exception
20 AccessorGroup/);
ea2e61bf 21
221;
34d52be2 23
24=head1 NAME
25
26DBIx::Class::Core - Core set of DBIx::Class modules.
27
28=head1 DESCRIPTION
29
30This class just inherits from the various modules that makes
126042ee 31up the DBIx::Class core features.
34d52be2 32
33
34=head1 AUTHORS
35
36Matt S. Trout <perl-stuff@trout.me.uk>
37
38=head1 LICENSE
39
40You may distribute this code under the same terms as Perl itself.
41
42=cut
43