From 0f480110a73bcba07715c72a72859922bd26ce7c Mon Sep 17 00:00:00 2001 From: Bradley Taylor Date: Sun, 3 Dec 2023 16:57:29 +0000 Subject: [PATCH] [REF][PHP8.2] Declare properties in TimeSpent report --- CRM/Report/Form/Case/TimeSpent.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/CRM/Report/Form/Case/TimeSpent.php b/CRM/Report/Form/Case/TimeSpent.php index fb929b7a04..95e1de4aa1 100644 --- a/CRM/Report/Form/Case/TimeSpent.php +++ b/CRM/Report/Form/Case/TimeSpent.php @@ -16,6 +16,30 @@ */ class CRM_Report_Form_Case_TimeSpent extends CRM_Report_Form { + /** + * @var array + * @internal + */ + public $activityTypes; + + /** + * @var array + * @internal + */ + public $activityStatuses; + + /** + * @var array + * @internal + */ + public $has_grouping; + + /** + * @var array + * @internal + */ + public $has_activity_type; + /** * Class constructor. */ -- 2.25.1