X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FIndex.pm;h=8f0707e17b90793e3ef0826fbaf9a362ba351636;hp=8a85c508b34b916966391d8da2717a5126c68bb8;hb=26dc649ad1a74622697f25fcbf29e806e75fcd2f;hpb=0bf7ab7160f4f2fd0f00cd3d53ac311e9ad50241 diff --git a/lib/Catalyst/DispatchType/Index.pm b/lib/Catalyst/DispatchType/Index.pm index 8a85c50..8f0707e 100644 --- a/lib/Catalyst/DispatchType/Index.pm +++ b/lib/Catalyst/DispatchType/Index.pm @@ -1,7 +1,8 @@ package Catalyst::DispatchType::Index; -use strict; -use base qw/Catalyst::DispatchType/; +use Moose; +extends 'Catalyst::DispatchType'; +no Moose; =head1 NAME @@ -9,10 +10,21 @@ Catalyst::DispatchType::Index - Index DispatchType =head1 SYNOPSIS -See L. +See L. =head1 DESCRIPTION +Dispatch type managing behaviour for index pages. For more information on +dispatch types, see: + +=over 4 + +=item * L for how they affect website authors + +=item * L for implementation information. + +=back + =head1 METHODS =head2 $self->match( $c, $path ) @@ -66,4 +78,6 @@ the same terms as Perl itself. =cut +__PACKAGE__->meta->make_immutable; + 1;