Re: Replacement for MooseX::Declare?
[email protected] (Matija Papec) Thu, 01 Oct 2015 09:09:11 +0200
| Newsgroups | perl.moose |
|---|---|
| Message-ID | <[email protected]> |
Tnx for the reply, I also figured that later. :) 29.09.2015, 12:06, "Buddy Burden" <[email protected]>: > Matija, > >> 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 ) { } >> >> ? > > No. It means that you won't be able to use the :fp attribute for a > class any more (to use Function::Parameters rather than Kavorka). But > you don't want to use that anyway. :-) > > -- Buddy