The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
12345678910111213 package TestApp::Controller::Action::Chained::ParentChain;use warnings;use strict;use base qw/ Catalyst::Controller /;## Chains to the action /action/chained/parentchain in the# Action::Chained controller.#sub child :Chained('.') :Args(1) { }1;
package
TestApp::Controller::Action::Chained::ParentChain;
use
warnings;
strict;
base
qw/ Catalyst::Controller /
;
#
# Chains to the action /action/chained/parentchain in the
# Action::Chained controller.
sub
child :Chained(
'.'
) :Args(1) { }
1;