From 856c7feefc8e8207a90c66a601ca5bd5fb6ad993 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Fri, 18 Mar 2022 11:36:04 +1300 Subject: [PATCH] Fix property declarations --- tests/phpunit/CRM/Contribute/Form/Contribution/MainTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/phpunit/CRM/Contribute/Form/Contribution/MainTest.php b/tests/phpunit/CRM/Contribute/Form/Contribution/MainTest.php index 1423778ba6..aa5d4bdd7c 100644 --- a/tests/phpunit/CRM/Contribute/Form/Contribution/MainTest.php +++ b/tests/phpunit/CRM/Contribute/Form/Contribution/MainTest.php @@ -22,19 +22,19 @@ class CRM_Contribute_Form_Contribution_MainTest extends CiviUnitTestCase { * The id of the contribution page. * @var int */ - private int $contributionPageId; + private $contributionPageId; /** * The id of the contribution page's payment processor. * @var int */ - private int $paymentProcessorId; + private $paymentProcessorId; /** * The price set of the contribution page. * @var int */ - private int $priceSetId; + private $priceSetId; /** * Clean up DB. -- 2.25.1