From: Eileen McNaughton Date: Thu, 21 Dec 2023 20:09:56 +0000 (+1300) Subject: Declare caseId, caseIds as public properties X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7fc71e9074552adb0eafbd3828463203e844918a;p=civicrm-core.git Declare caseId, caseIds as public properties --- 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. */