Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / ResultSource / Table.pm
1 package DBIx::Class::ResultSource::Table;
2
3 use strict;
4 use warnings;
5
6 use base 'DBIx::Class::ResultSource';
7
8 =head1 NAME
9
10 DBIx::Class::ResultSource::Table - Table object
11
12 =head1 SYNOPSIS
13
14 =head1 DESCRIPTION
15
16 Table object that inherits from L<DBIx::Class::ResultSource>.
17
18 =head1 METHODS
19
20 =head2 from
21
22 Returns the FROM entry for the table (i.e. the table name)
23
24 =cut
25
26 sub from {
27   $_[0]->throw_exception('from() is not a setter method') if @_ > 1;
28   $_[0]->name;
29 }
30
31 =head1 FURTHER QUESTIONS?
32
33 Check the list of L<additional DBIC resources|DBIx::Class/GETTING HELP/SUPPORT>.
34
35 =head1 COPYRIGHT AND LICENSE
36
37 This module is free software L<copyright|DBIx::Class/COPYRIGHT AND LICENSE>
38 by the L<DBIx::Class (DBIC) authors|DBIx::Class/AUTHORS>. You can
39 redistribute it and/or modify it under the same terms as the
40 L<DBIx::Class library|DBIx::Class/COPYRIGHT AND LICENSE>.
41
42 =cut
43
44 1;