sub update : Chained('instance') PathPart Args(0)
The minute you start adding custom attributes, things end up well past 70-80 columns wide:
sub update : Chained('instance') PathPart Args(0) Form('someform.yml') Template('this/page') ActionClass('REST')
Seconded (Score:1)
I have wanted that for a long time.
it seems to work with 5.8.8 (Score:1)
Running the following code under perl 5.8.8 seems to work fine.
use strict;
use warnings;
sub MODIFY_CODE_ATTRIBUTES {
shift; shift;
print "Got attributes:\n";
print "\t$_\n" for @_;
return ();
}
sub foo
: Chained('instance')
: PathPart
: Args(0)
: Form
works in catalyst too (Score:1)
sub index
: Path('')
: Form
{
#
}
in a Cat app running under perl 5.8.8 and Catalyst 5.7011
And both attributes seem to still work as expected, so what are you talking about, man?!?
Re: (Score:1)
Scouring deltas/changes so far yields nothing. Maybe it was an urban myth that they couldn't be on multiple lines, or maybe it was fixed and no one logged it for us mere mortals.
Re: (Score:1)