GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Perl::Critic::Policy::Tics::ProhibitUseBase(3) User Contributed Perl Documentation Perl::Critic::Policy::Tics::ProhibitUseBase(3)

Perl::Critic::Policy::Tics::ProhibitUseBase - do not use base.pm

version 0.009

  use base qw(Baseclass);

You've seen that a hundred times, right? That doesn't mean that it's a good idea. It screws with $VERSION, it alters (for the worse) the exceptions reported by failure-to-require, it doesn't let you call the base class's "import" method, it pushes to @INC rather than replacing it, and it uses and documents interactions with fields, which can lead one to believe that fields are even remotely relevant to modern (or any!) development of Perl classes.

There are a lot of ways around using "base". Pick one.

This policy caused a bit of controversy, largely in this form:

  These behaviors are either correct or can be worked around, and using base.pm
  protects you from the problem of remembering to load prereqs and from
  setting @INC at runtime.

These are true statements. My chosen workaround for all these problems is to not use base.pm. That doesn't mean it's a good idea for you, or anyone else. Heck, it doesn't mean it's a good idea for me, either. It's just my preference. As with all Perl::Critic policies, you should decide whether it's right for you.

Ricardo SIGNES <rjbs@cpan.org>

This software is copyright (c) 2007 by Ricardo SIGNES.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2014-07-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.