From 7a5c39eb798c603cb59b21c8444eed2e9b97a460 Mon Sep 17 00:00:00 2001 From: Alexander Stehlik Date: Fri, 12 May 2023 10:29:07 +0200 Subject: [PATCH] [TASK] Make Base62UrlKeyGeneratorTest compatible with PHP 7.4 --- .../UrlKeyGenerator/Base62UrlKeyGeneratorTest.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Tests/Unit/UrlKeyGenerator/Base62UrlKeyGeneratorTest.php b/Tests/Unit/UrlKeyGenerator/Base62UrlKeyGeneratorTest.php index 485dab6..ff84df0 100644 --- a/Tests/Unit/UrlKeyGenerator/Base62UrlKeyGeneratorTest.php +++ b/Tests/Unit/UrlKeyGenerator/Base62UrlKeyGeneratorTest.php @@ -28,9 +28,15 @@ class Base62UrlKeyGeneratorTest extends TestCase { protected Base62UrlKeyGenerator $base62UrlKeyGenerator; - protected ExtensionConfiguration|MockObject $extensionConfigurationMock; - - protected GeneralUtilityWrapper|MockObject $generalUtilityMock; + /** + * @var ExtensionConfiguration|MockObject + */ + protected $extensionConfigurationMock; + + /** + * @var GeneralUtilityWrapper|MockObject + */ + protected $generalUtilityMock; protected function setUp(): void {