From a82868c2d34ac334cf68220d0288a0ce20b66abc Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Thu, 28 Apr 2011 15:35:10 -0500 Subject: [PATCH] need to load modules in WebGUI::BestPractices --- lib/WebGUI/BestPractices.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/WebGUI/BestPractices.pm b/lib/WebGUI/BestPractices.pm index e481d1528..b7786b9c0 100644 --- a/lib/WebGUI/BestPractices.pm +++ b/lib/WebGUI/BestPractices.pm @@ -32,6 +32,11 @@ This module is the equivalent of adding the following to your module: =cut +use strict; +use warnings; +use feature ':5.10'; +use namespace::autoclean (); + sub import { my $caller = caller; strict->import;