Bug 29684: Fix warn about js/locale_data.js (paycollect.pl)
[koha-ffzg.git] / C4 / Scheduler.pm
index 304a050..e2f6d85 100644 (file)
@@ -17,18 +17,16 @@ package C4::Scheduler;
 # You should have received a copy of the GNU General Public License
 # along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-#use warnings; FIXME - Bug 2505
+use Modern::Perl;
 
-use vars qw(@ISA @EXPORT @EXPORT_OK %EXPORT_TAGS);
 use C4::Context;
 use Schedule::At;
 
+our (@ISA, @EXPORT_OK);
 BEGIN {
-       require Exporter;
-       @ISA = qw(Exporter);
-       @EXPORT =
-               qw(get_jobs get_at_jobs get_at_job add_at_job remove_at_job);
+    require Exporter;
+    @ISA       = qw(Exporter);
+    @EXPORT_OK = qw(get_jobs get_at_jobs get_at_job add_at_job remove_at_job);
 }
 
 =head1 NAME