Revising the stub for ILS/Transaction/FeePayment.pm
authorJoe Atzberger <joe.atzberger@liblime.com>
Fri, 19 Sep 2008 00:02:49 +0000 (19:02 -0500)
committerGalen Charlton <galen.charlton@liblime.com>
Fri, 26 Sep 2008 14:07:22 +0000 (09:07 -0500)
Obviously more implementation is needed.

Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
C4/SIP/ILS/Transaction/FeePayment.pm

index 00fc81a..8a156b7 100644 (file)
@@ -1,14 +1,19 @@
 package ILS::Transaction::FeePayment;
 
-use Exporter;
 use warnings;
 use strict;
 
+use vars qw($VERSION @ISA $debug);
+
+BEGIN {
+       $VERSION = 1.00;
+       @ISA = qw(ILS::Transaction);
+       $debug = 0;
+}
+
 use ILS;
 use ILS::Transaction;
 
-our @ISA = qw(Exporter ILS::Transaction);
-
 1;
 __END__