mro compat stuff
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Model.pm
CommitLineData
5ee249f2 1package Catalyst::Model;
2
6f1f968a 3use MRO::Compat;
4use mro 'c3';
e5ecd5bc 5use Moose;
6extends qw/Catalyst::Component/;
5ee249f2 7
6680c772 8no Moose;
0fc2d522 9
10#We can't immutablize anything that ISA Component just yet
11#__PACKAGE__->meta->make_immutable();
6680c772 12
5ee249f2 13=head1 NAME
14
15Catalyst::Model - Catalyst Model base class
16
17=head1 SYNOPSIS
18
19See L<Catalyst>.
20
21=head1 DESCRIPTION
22
23Catalyst Model base class.
24
8a7d038a 25=head1 METHODS
26
27Implements the same methods as other Catalyst components, see
28L<Catalyst::Component>
29
5ee249f2 30=head1 AUTHOR
31
32Sebastian Riedel, C<sri@oook.de>
33
34=head1 COPYRIGHT
35
36This program is free software, you can redistribute it and/or modify it under
37the same terms as Perl itself.
38
39=cut
40
411;