From: Eileen McNaughton Date: Fri, 28 Mar 2014 02:49:02 +0000 (+1300) Subject: fix function signature to match interface & not give warning X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=ba650a587d5da777868f6e744e7eb8e4741a349b;p=civicrm-core.git fix function signature to match interface & not give warning --- 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);