From fef1f37d8adfca3180a77de288ccac92bd18b458 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Tue, 28 Mar 2023 17:01:56 +1300 Subject: [PATCH] PHP 8.2 - declare property _fields Really we want to merge this into entityFields but it wasn't as easy as I hoped --- CRM/Admin/Form/PaymentProcessor.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CRM/Admin/Form/PaymentProcessor.php b/CRM/Admin/Form/PaymentProcessor.php index c5b5263c52..d247be0030 100644 --- a/CRM/Admin/Form/PaymentProcessor.php +++ b/CRM/Admin/Form/PaymentProcessor.php @@ -39,6 +39,11 @@ class CRM_Admin_Form_PaymentProcessor extends CRM_Admin_Form { */ protected $_paymentProcessorType; + /** + * @var array|array[] + */ + private $_fields; + /** * Set entity fields to be assigned to the form. */ @@ -157,6 +162,8 @@ class CRM_Admin_Form_PaymentProcessor extends CRM_Admin_Form { * Build the form object. * * @param bool $check + * + * @throws \CRM_Core_Exception */ public function buildQuickForm($check = FALSE) { $this->buildQuickEntityForm(); -- 2.25.1