From: Bradley Taylor Date: Fri, 27 Jan 2023 20:49:41 +0000 (+0000) Subject: [REF][PHP8.2] Declare missing property on CRM_Utils_HookTest X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7faa9c4193cf1b1a5a73906878de274f973fd4db;p=civicrm-core.git [REF][PHP8.2] Declare missing property on CRM_Utils_HookTest --- diff --git a/tests/phpunit/CRM/Utils/HookTest.php b/tests/phpunit/CRM/Utils/HookTest.php index 803b47d02f..a0c594921b 100644 --- a/tests/phpunit/CRM/Utils/HookTest.php +++ b/tests/phpunit/CRM/Utils/HookTest.php @@ -6,12 +6,26 @@ */ class CRM_Utils_HookTest extends CiviUnitTestCase { + /** + * @var object|null + */ public static $activeTest = NULL; + /** + * @var array + */ public $fakeModules; + /** + * @var array + */ public $log; + /** + * @var CRM_Utils_Hook_UnitTests + */ + public $hook; + public function setUp(): void { $this->useTransaction(); parent::setUp();