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=3c0b49b974e14b71cf4f39179bcf7afbcc35698e;hp=819b8943673418b4d73d7ebb45d099f402386262;hb=0fc2d522eec43202c21e9f0062e43f10db4d9008;hpb=8e061fef6ed2e38808032cbb722098c5c183ec03 diff --git a/lib/Catalyst/ActionChain.pm b/lib/Catalyst/ActionChain.pm index 819b894..3c0b49b 100644 --- a/lib/Catalyst/ActionChain.pm +++ b/lib/Catalyst/ActionChain.pm @@ -1,10 +1,13 @@ package Catalyst::ActionChain; +use Class::C3; use Moose; extends qw(Catalyst::Action); has chain => (is => 'rw'); +no Moose; + =head1 NAME Catalyst::ActionChain - Chain of Catalyst Actions @@ -57,7 +60,6 @@ sub from_chain { return $self->new({ %$final, chain => $actions }); } -no Moose; __PACKAGE__->meta->make_immutable; 1;