|
NAMEPerl::Critic::Policy::Moose::ProhibitNewMethod - Don't override Moose's standard constructors.VERSIONversion 1.05DESCRIPTIONOverriding "new()" on a Moose class causes a number of problems, including speed issues and problems with order of invocation of constructors when multiple inheritance is involved. Use "BUILDARGS()" and "BUILD()" instead.AFFILIATIONThis policy is part of Perl::Critic::Moose.CONFIGURATIONThere is a single option, "equivalent_modules". This allows you to specify modules that should be treated the same as Moose and Moose::Role, if, say, you were doing something with Moose::Exporter. For example, if you were to have this in your .perlcriticrc file:[Moose::ProhibitNewMethod] equivalent_modules = MyCompany::Moose MooseX::NewThing then the following code would result in a violation: package Baz; use MyCompany::Moose; sub new { ... } SEE ALSO
SUPPORTBugs may be submitted through the RT bug tracker <http://rt.cpan.org/Public/Dist/Display.html?Name=Perl-Critic-Moose> (or bug-perl-critic-moose@rt.cpan.org <mailto:bug-perl-critic-moose@rt.cpan.org>).I am also usually active on IRC as 'drolsky' on "irc://irc.perl.org". AUTHORS
COPYRIGHT AND LICENSEThis software is copyright (c) 2008 - 2016 by Elliot Shank.This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Visit the GSP FreeBSD Man Page Interface. |