From 7fc71e9074552adb0eafbd3828463203e844918a Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 22 Dec 2023 09:09:56 +1300 Subject: [PATCH] Declare caseId, caseIds as public properties --- CRM/Contact/Form/Task/PDF.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CRM/Contact/Form/Task/PDF.php b/CRM/Contact/Form/Task/PDF.php index 1c9902004f..b21905b3e7 100644 --- a/CRM/Contact/Form/Task/PDF.php +++ b/CRM/Contact/Form/Task/PDF.php @@ -35,6 +35,28 @@ class CRM_Contact_Form_Task_PDF extends CRM_Contact_Form_Task { public $_activityId = NULL; + /** + * This should be replaced by an externally supposed getCaseID() method. + * + * Property may change as it is not really required. + * + * @var int|null + * + * @internal + */ + public $_caseId; + + /** + * This should be replaced by an externally supposed getCaseID() method. + * + * Property may change as it is kinda weird. + * + * @var int|null + * + * @internal + */ + public $_caseIds; + /** * Build all the data structures needed to build the form. */ -- 2.25.1