X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FModel.pm;h=05c913f369f2582156328b91c3209fe7c8e86da8;hb=88eee38e25dd1a991008fb5f61b848fcecb97ad0;hp=f56b31f2658431ed2c91d3ddc2324680086490af;hpb=5ee249f25d549a71fdb509af9d99151f62cddab8;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Model.pm b/lib/Catalyst/Model.pm index f56b31f..05c913f 100644 --- a/lib/Catalyst/Model.pm +++ b/lib/Catalyst/Model.pm @@ -1,7 +1,9 @@ package Catalyst::Model; -use strict; -use base qw/Catalyst::Component/; +use Moose; +extends qw/Catalyst::Component/; + +no Moose; =head1 NAME @@ -15,9 +17,14 @@ See L. Catalyst Model base class. -=head1 AUTHOR +=head1 METHODS + +Implements the same methods as other Catalyst components, see +L -Sebastian Riedel, C +=head1 AUTHORS + +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -26,4 +33,6 @@ the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;