From 9fb0dae6bfdd88ef345f13b47f1750fcc7454119 Mon Sep 17 00:00:00 2001 From: Dariusz Ruminski Date: Wed, 18 Dec 2024 11:58:50 +0100 Subject: [PATCH] 7.4 compat --- src/FixerConfiguration/FixerOptionBuilder.php | 2 +- tests/UtilsTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/FixerConfiguration/FixerOptionBuilder.php b/src/FixerConfiguration/FixerOptionBuilder.php index 8f8bb7405e8..73bb98ecd6c 100644 --- a/src/FixerConfiguration/FixerOptionBuilder.php +++ b/src/FixerConfiguration/FixerOptionBuilder.php @@ -23,7 +23,7 @@ final class FixerOptionBuilder /** * @var null|mixed */ - private mixed $default = null; + private ?mixed $default = null; private bool $isRequired = true; diff --git a/tests/UtilsTest.php b/tests/UtilsTest.php index beaf06dd3de..36d010b1dfd 100644 --- a/tests/UtilsTest.php +++ b/tests/UtilsTest.php @@ -34,7 +34,7 @@ final class UtilsTest extends TestCase /** * @var null|false|string */ - private null|bool|string $originalValueOfFutureMode; + private $originalValueOfFutureMode; protected function setUp(): void {