Bug 17600: Standardize our EXPORT_OK
[srvgit] / misc / cronjobs / holds / cancel_expired_holds.pl
index 4932bbf..0af0255 100755 (executable)
@@ -39,19 +39,19 @@ This script calls C4::Reserves::CancelExpiredReserves which will find and cancel
 =cut
 
 use Modern::Perl;
-use Getopt::Long;
-use Pod::Usage;
+use Getopt::Long qw( GetOptions );
+use Pod::Usage qw( pod2usage );
 
 BEGIN {
     # find Koha's Perl modules
     # test carefully before changing this
-    use FindBin;
+    use FindBin ();
     eval { require "$FindBin::Bin/../kohalib.pl" };
 }
 
 use Koha::Script -cron;
 use C4::Reserves;
-use C4::Log;
+use C4::Log qw( cronlogaction );
 
 =head1 OPTIONS