From: Bradley Taylor Date: Fri, 2 Jun 2023 16:39:30 +0000 (+0100) Subject: [REF][PHP8.2] Avoid dynamic properties in report summary X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9bff281ea39cbd71ebf38d8422cd27d1f1012750;p=civicrm-core.git [REF][PHP8.2] Avoid dynamic properties in report summary --- diff --git a/CRM/Logging/ReportSummary.php b/CRM/Logging/ReportSummary.php index 5ecdcac11b..cde815f888 100644 --- a/CRM/Logging/ReportSummary.php +++ b/CRM/Logging/ReportSummary.php @@ -35,6 +35,21 @@ class CRM_Logging_ReportSummary extends CRM_Report_Form { */ protected $currentLogTable; + /** + * Set within `$this->buildTemporaryTables` + * + * @var CRM_Utils_SQL_TempTable + */ + protected $temporaryTable; + + /** + * The name of the temporary table. + * Set within `$this->buildTemporaryTables` + * + * @var string + */ + protected $temporaryTableName; + /** * Class constructor. */