X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FActionChain.pm;h=60fd6db947a5954951bafad00fb2385528cb170f;hp=2fd63d93d46008929cd687c5b08993d9eaa4447c;hb=059c085bfcead450e70ace9ef193aa99ac2ab37d;hpb=25f55123b7c0b520eb166890bf47f1f3217200af diff --git a/lib/Catalyst/ActionChain.pm b/lib/Catalyst/ActionChain.pm index 2fd63d9..60fd6db 100644 --- a/lib/Catalyst/ActionChain.pm +++ b/lib/Catalyst/ActionChain.pm @@ -1,8 +1,9 @@ package Catalyst::ActionChain; -use strict; -use base qw/Catalyst::Action/; +use Moose; +extends qw(Catalyst::Action); +has chain => (is => 'rw'); =head1 NAME @@ -20,8 +21,6 @@ the actions in the chain in order. =cut -__PACKAGE__->mk_accessors(qw/chain/); - use overload ( # Stringify to reverse for debug output etc. @@ -79,7 +78,9 @@ actions in order. Takes a list of Catalyst::Action objects and constructs and returns a Catalyst::ActionChain object representing a chain of these actions -=cut +=head2 meta + +Provided by Moose =head1 AUTHOR