From 2fd37a7ed270ddb2aa0ae048c357be5c1622934a Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 8 Oct 2010 10:37:59 -0700 Subject: [PATCH] Convert PayPal base class over to Moose. --- lib/WebGUI/Shop/PayDriver/PayPal.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/WebGUI/Shop/PayDriver/PayPal.pm b/lib/WebGUI/Shop/PayDriver/PayPal.pm index d7d41558e..dee42d65b 100644 --- a/lib/WebGUI/Shop/PayDriver/PayPal.pm +++ b/lib/WebGUI/Shop/PayDriver/PayPal.pm @@ -16,7 +16,9 @@ package WebGUI::Shop::PayDriver::PayPal; ## this holds some shared functionality, and MUST be overridden for a full payment driver use strict; -use base qw/WebGUI::Shop::PayDriver/; +use Moose; +use WebGUI::Definition::Shop; +extends qw/WebGUI::Shop::PayDriver/; =head1 NAME