[REF][PHP8.2] Avoid dynamic properties in report summary
authorBradley Taylor <bradley.taylor@brightminded.com>
Fri, 2 Jun 2023 16:39:30 +0000 (17:39 +0100)
committerBradley Taylor <bradley.taylor@brightminded.com>
Fri, 2 Jun 2023 16:39:57 +0000 (17:39 +0100)
CRM/Logging/ReportSummary.php

index 5ecdcac11bebff0136b4ed60fae0b8946134e07e..cde815f8888cdc0387dfb4937937bafb0c34e39a 100644 (file)
@@ -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.
    */