package Perl::Critic::Policy::Community::IndirectObjectNotation; use strict; use warnings; use Perl::Critic::Utils qw(:severities :classification :ppi); use parent 'Perl::Critic::Policy::Objects::ProhibitIndirectSyntax'; our $VERSION = 'v1.0.4'; sub default_severity { $SEVERITY_HIGHEST } sub default_themes { 'community' } 1; =head1 NAME Perl::Critic::Policy::Community::IndirectObjectNotation - Don't call methods indirectly =head1 DESCRIPTION Perl allows a form of method call where the method name is first, followed by the invocant (class or object to call the method on), then the argument list. This is an unfortunate legacy syntax that should no longer be used. See L and L for more information. my $obj = new My::Class @args; # not ok my $obj = My::Class->new(@args); # ok It is difficult to detect indirect object notation by static analysis, so this policy only forbids the C method call by default, as it is highly unlikely to be the name of a standard subroutine call. Consider using the L pragma to cause the code to warn or die when indirect object notation is used. On Perl 5.32 or newer (or automatically with C or newer), L can be disabled to prevent the parser from interpreting syntax as indirect object notation. This policy is a subclass of the L core policy L, and performs the same function but in the C theme. =head1 AFFILIATION This policy is part of L. =head1 CONFIGURATION This policy can be configured, in the same way as its parent policy L, to attempt to forbid additional method names from being called indirectly. Be aware this may lead to false positives as it is difficult to detect indirect object notation by static analysis. The C subroutine is always forbidden in addition to these. [Community::IndirectObjectNotation] forbid = create destroy =head1 AUTHOR Dan Book, C =head1 COPYRIGHT AND LICENSE Copyright 2015, Dan Book. This library is free software; you may redistribute it and/or modify it under the terms of the Artistic License version 2.0. =head1 SEE ALSO L, L