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