X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FModel.pm;h=05c913f369f2582156328b91c3209fe7c8e86da8;hb=3295c7dbc672a0d1c03f657a2a37f12f322bbece;hp=0cd5dd2850a9b2bb6f6df52a2c9d7628e34aea03;hpb=e5ecd5bc38bac3e2fcfaf643ea2a4c6ab46d7e57;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Model.pm b/lib/Catalyst/Model.pm index 0cd5dd2..05c913f 100644 --- a/lib/Catalyst/Model.pm +++ b/lib/Catalyst/Model.pm @@ -3,6 +3,8 @@ package Catalyst::Model; use Moose; extends qw/Catalyst::Component/; +no Moose; + =head1 NAME Catalyst::Model - Catalyst Model base class @@ -20,9 +22,9 @@ Catalyst Model base class. Implements the same methods as other Catalyst components, see L -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -31,4 +33,6 @@ the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;