X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FModel.pm;h=cc41edec108e093a5961a1e5053e69285428e4d2;hp=f56b31f2658431ed2c91d3ddc2324680086490af;hb=d0cacee71a316290bc01f0e12681c16bdc1e84e2;hpb=5ee249f25d549a71fdb509af9d99151f62cddab8 diff --git a/lib/Catalyst/Model.pm b/lib/Catalyst/Model.pm index f56b31f..cc41ede 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,15 +17,22 @@ 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 -This program is free software, you can redistribute it and/or modify it under +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;