From ba650a587d5da777868f6e744e7eb8e4741a349b Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 28 Mar 2014 15:49:02 +1300 Subject: [PATCH] fix function signature to match interface & not give warning --- CRM/Core/Payment/PayJunction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Core/Payment/PayJunction.php b/CRM/Core/Payment/PayJunction.php index 7080288695..1be136f40b 100644 --- a/CRM/Core/Payment/PayJunction.php +++ b/CRM/Core/Payment/PayJunction.php @@ -53,7 +53,7 @@ class CRM_Core_Payment_PayJunction extends CRM_Core_Payment { * @static * */ - static function &singleton($mode, &$paymentProcessor) { + static function &singleton($mode, &$paymentProcessor, &$paymentForm = NULL, $force = false) { $processorName = $paymentProcessor['name']; if (self::$_singleton[$processorName] === NULL) { self::$_singleton[$processorName] = new CRM_Core_Payment_PayJunction($mode, $paymentProcessor); -- 2.25.1