Created
September 30, 2009 22:20
-
-
Save willert/198508 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Old style: | |
final action do_login as 'einloggen' { | |
my ( $system, $partner ) = @{$ctx->stash}{qw/ system partner /}; | |
[...] | |
New style: | |
final action do_login( :$system, $partner ) as 'einloggen' { | |
[...] | |
Or: | |
final action do_login( :$system is stashed, $partner is stashed ) as 'einloggen' { | |
[...] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment