File Coverage

blib/lib/Perl/Critic/Policy/ClassHierarchies/ProhibitExplicitISA.pm
Criterion Covered Total %
statement 24 25 96.0
branch 1 2 50.0
condition n/a
subroutine 11 11 100.0
pod 4 5 80.0
total 40 43 93.0


line stmt bran cond sub pod time code
1             package Perl::Critic::Policy::ClassHierarchies::ProhibitExplicitISA;
2              
3 40     40   26225 use 5.010001;
  40         196  
4 40     40   277 use strict;
  40         182  
  40         916  
5 40     40   266 use warnings;
  40         144  
  40         942  
6 40     40   250 use Readonly;
  40         144  
  40         2129  
7              
8 40     40   326 use Perl::Critic::Utils qw{ :severities };
  40         151  
  40         1922  
9 40     40   5140 use parent 'Perl::Critic::Policy';
  40         150  
  40         276  
10              
11             our $VERSION = '1.150';
12              
13             #-----------------------------------------------------------------------------
14              
15             Readonly::Scalar my $DESC => q{@ISA used instead of "use parent"}; ## no critic (RequireInterpolation)
16             Readonly::Scalar my $EXPL => [ 360 ];
17              
18             #-----------------------------------------------------------------------------
19              
20 89     89 0 1666 sub supported_parameters { return () }
21 74     74 1 310 sub default_severity { return $SEVERITY_MEDIUM }
22 86     86 1 401 sub default_themes { return qw( core maintenance pbp certrec ) }
23 30     30 1 91 sub applies_to { return 'PPI::Token::Symbol' }
24              
25             #-----------------------------------------------------------------------------
26              
27             sub violates {
28 172     172 1 378 my ($self, $elem, undef) = @_;
29              
30 172 50       317 if( $elem eq q{@ISA} ) { ## no critic (RequireInterpolation)
31 0         0 return $self->violation( $DESC, $EXPL, $elem );
32             }
33 172         1839 return; #ok!
34             }
35              
36             1;
37              
38             #-----------------------------------------------------------------------------
39              
40             __END__
41              
42             =pod
43              
44             =head1 NAME
45              
46             Perl::Critic::Policy::ClassHierarchies::ProhibitExplicitISA - Employ C<use parent> instead of C<@ISA>.
47              
48              
49             =head1 AFFILIATION
50              
51             This Policy is part of the core L<Perl::Critic|Perl::Critic>
52             distribution.
53              
54              
55             =head1 DESCRIPTION
56              
57             Conway recommends employing C<use parent qw(Foo)> instead of the usual
58             C<our @ISA = qw(Foo)> because the former happens at compile time and
59             the latter at runtime. The L<parent|parent> pragma also automatically loads
60             C<Foo> for you so you save a line of easily-forgotten code.
61              
62             The original version of this policy recommended L<base|base> instead of
63             L<parent|parent>, which is now obsolete.
64              
65             =head1 CONFIGURATION
66              
67             This Policy is not configurable except for the standard options.
68              
69              
70             =head1 AUTHOR
71              
72             Chris Dolan <cdolan@cpan.org>
73              
74              
75             =head1 COPYRIGHT
76              
77             Copyright (c) 2006-2022 Chris Dolan.
78              
79             This program is free software; you can redistribute it and/or modify
80             it under the same terms as Perl itself.
81              
82             =cut
83              
84             # Local Variables:
85             # mode: cperl
86             # cperl-indent-level: 4
87             # fill-column: 78
88             # indent-tabs-mode: nil
89             # c-indentation-style: bsd
90             # End:
91             # ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround :