Skip to content
Snippets Groups Projects
Unverified Commit e05d4e66 authored by totten's avatar totten Committed by GitHub
Browse files

Merge pull request #25401 from braders/declare-system-properties

[REF][PHP8.2] Declare system property in tests
parents b2b7fd98 0c76dd74
Branches
Tags
No related merge requests found
......@@ -15,6 +15,11 @@
*/
class CRM_Extension_Manager_PaymentTest extends CiviUnitTestCase {
/**
* @var CRM_Extension_System
*/
private $system;
public function setUp(): void {
parent::setUp();
if (class_exists('test_extension_manager_paymenttest')) {
......
......@@ -6,6 +6,11 @@
*/
class CRM_Extension_Manager_ReportTest extends CiviUnitTestCase {
/**
* @var CRM_Extension_System
*/
private $system;
public function setUp(): void {
parent::setUp();
//if (class_exists('test_extension_manager_reporttest')) {
......
......@@ -6,6 +6,11 @@
*/
class CRM_Extension_Manager_SearchTest extends CiviUnitTestCase {
/**
* @var CRM_Extension_System
*/
private $system;
public function setUp(): void {
parent::setUp();
//if (class_exists('test_extension_manager_searchtest')) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment