X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType.pm;h=06905ad3fb03a2654b298837c34fd2e0be90aa3e;hp=f8476eb617a5a03b12d300a1417e94e2fe05721d;hb=52f71256fa6baba38de781b3074884ff0d12769f;hpb=a486ab55fa8e0650a63d7b4f69ec02f79bd701a4 diff --git a/lib/Catalyst/DispatchType.pm b/lib/Catalyst/DispatchType.pm index f8476eb..06905ad 100644 --- a/lib/Catalyst/DispatchType.pm +++ b/lib/Catalyst/DispatchType.pm @@ -1,7 +1,7 @@ package Catalyst::DispatchType; -use strict; -use base 'Class::Accessor::Fast'; +use Moose; # using it to add Moose::Object to @ISA ... +no Moose; =head1 NAME @@ -58,10 +58,11 @@ arrayref, or undef if unable to do so. sub uri_for_action { } -=head1 AUTHOR +sub expand_action { } -Matt S Trout -Sebastian Riedel, C +=head1 AUTHORS + +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT @@ -70,4 +71,6 @@ the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;