use strict
authorMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 12 Jan 2011 10:42:36 +0000 (11:42 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Wed, 12 Jan 2011 10:42:36 +0000 (11:42 +0100)
SL/BackgroundJob/ALL.pm
SL/BackgroundJob/CleanBackgroundJobHistory.pm
SL/BackgroundJob/Test.pm

index acd6d6e..be357a6 100644 (file)
@@ -1,5 +1,7 @@
 package SL::BackgroundJob::ALL;
 
+use strict;
+
 use SL::BackgroundJob::Base;
 use SL::BackgroundJob::CleanBackgroundJobHistory;
 
index 002410e..6ec99f8 100644 (file)
@@ -1,5 +1,7 @@
 package SL::BackgroundJob::CleanBackgroundJobHistory;
 
+use strict;
+
 use parent qw(SL::BackgroundJob::Base);
 
 use SL::DB::BackgroundJobHistory;
index 01c8569..f79a1b5 100644 (file)
@@ -1,5 +1,7 @@
 package SL::BackgroundJob::Test;
 
+use strict;
+
 use parent qw(SL::BackgroundJob::Base);
 
 sub run {
@@ -9,5 +11,4 @@ sub run {
   $::lxdebug->message(0, "Test job is being executed.");
 }
 
-
 1;