Merge branch 'pr/135' into release-candidates/rc-5.90116
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Model.pm
CommitLineData
5ee249f2 1package Catalyst::Model;
2
e5ecd5bc 3use Moose;
4extends qw/Catalyst::Component/;
5ee249f2 5
6680c772 6no Moose;
0fc2d522 7
5ee249f2 8=head1 NAME
9
10Catalyst::Model - Catalyst Model base class
11
12=head1 SYNOPSIS
13
14See L<Catalyst>.
15
16=head1 DESCRIPTION
17
18Catalyst Model base class.
19
8a7d038a 20=head1 METHODS
21
22Implements the same methods as other Catalyst components, see
23L<Catalyst::Component>
24
2f381252 25=head1 AUTHORS
5ee249f2 26
2f381252 27Catalyst Contributors, see Catalyst.pm
5ee249f2 28
29=head1 COPYRIGHT
30
536bee89 31This library is free software. You can redistribute it and/or modify it under
5ee249f2 32the same terms as Perl itself.
33
34=cut
35
46d0346d 36__PACKAGE__->meta->make_immutable;
37
5ee249f2 381;