Improve trigger 'scope' attribute support (RT#119997)
[dbsrgits/SQL-Translator.git] / lib / SQL / Translator / Producer / Storable.pm
index 744a82d..4113690 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Producer::Storable;
 
 =head1 NAME
 
-SQL::Translator::Producer::Storable - serializes the SQL::Translator::Schema 
+SQL::Translator::Producer::Storable - serializes the SQL::Translator::Schema
     object via the Storable module
 
 =head1 SYNOPSIS
@@ -22,9 +22,10 @@ takes a long time.
 =cut
 
 use strict;
-use vars qw($DEBUG $VERSION @EXPORT_OK);
+use warnings;
+our ( $DEBUG, @EXPORT_OK );
 $DEBUG = 0 unless defined $DEBUG;
-$VERSION = '1.59';
+our $VERSION = '1.59';
 
 use Storable;
 use Exporter;
@@ -43,8 +44,6 @@ sub produce {
 
 1;
 
-# -------------------------------------------------------------------
-
 =pod
 
 =head1 AUTHOR