Re: Replacement for MooseX::Declare?
[email protected] (Matija Papec) Mon, 21 Sep 2015 21:27:03 +0200
| Newsgroups | perl.moose |
|---|---|
| Message-ID | <[email protected]> |
Hello,
it says that "Support for using Function::Parameters to handle method signatures is likely to be dropped"
https://metacpan.org/pod/Moops#Planned-Changes
Does this means that I have to use
method change_job {
my ( $employer,$title ) = @_;
}
instead of
method change_job ( Object $employer, Str $title ) { }
?
21.09.2015, 21:15, "Jean-Damien Durand" <[email protected]>:
> Hello,
> I enjoyed using Moops.
> HTH, Jean-Damien.
>
> Le lundi 21 septembre 2015, 21:12:07 Matija Papec a écrit :
>> https://metacpan.org/pod/MooseX::Declare is nice as an idea to remove boilerplate, but unfortunately it is deprecated.
>>
>> Can you recommend better MooseX module with similar functionality?
>>
>> Tnx in advance.