From 91a50766d144988635986b17417e5bcbea671c0c Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Sun, 3 Dec 2023 17:13:15 +0000 Subject: [PATCH] [REF][PHP8.2] Declare properties in CRM_Contact_Form_Task_Delete --- CRM/Contact/Form/Task/Delete.php | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/CRM/Contact/Form/Task/Delete.php b/CRM/Contact/Form/Task/Delete.php index 1c35f9e00d..0f9d4518e1 100644 --- a/CRM/Contact/Form/Task/Delete.php +++ b/CRM/Contact/Form/Task/Delete.php @@ -32,10 +32,26 @@ class CRM_Contact_Form_Task_Delete extends CRM_Contact_Form_Task { /** * Cache shared address message so we don't query twice - * @var string + * + * @var array */ protected $_sharedAddressMessage = NULL; + /** + * @var string + */ + protected $_searchKey; + + /** + * @var bool + */ + protected $_skipUndelete; + + /** + * @var bool + */ + protected $_restore; + /** * Build all the data structures needed to build the form. */ -- 2.25.1