aboutsummaryrefslogtreecommitdiff
path: root/tests/cli/i18n/I18nDataTest.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2025-09-14 21:27:55 +0200
committerGravatar GitHub <noreply@github.com> 2025-09-14 21:27:55 +0200
commita7e633bc58bb8ebf466241dac99c58bdafdab937 (patch)
treed39cfb548cddf331d39af921e09089f80867c955 /tests/cli/i18n/I18nDataTest.php
parent697240813d9f086bff30b7e6424538fbef933359 (diff)
Minor explicit namespace fix for PHPUnit (#7960)
* Minor explicit namespace fix for PHPUnit * final
Diffstat (limited to 'tests/cli/i18n/I18nDataTest.php')
-rw-r--r--tests/cli/i18n/I18nDataTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cli/i18n/I18nDataTest.php b/tests/cli/i18n/I18nDataTest.php
index 2336026eb..02ad7ea9a 100644
--- a/tests/cli/i18n/I18nDataTest.php
+++ b/tests/cli/i18n/I18nDataTest.php
@@ -3,7 +3,7 @@ declare(strict_types=1);
require_once dirname(__DIR__, 3) . '/cli/i18n/I18nData.php';
require_once dirname(__DIR__, 3) . '/cli/i18n/I18nValue.php';
-class I18nDataTest extends PHPUnit\Framework\TestCase {
+final class I18nDataTest extends \PHPUnit\Framework\TestCase {
/** @var array<string,array<string,array<string,I18nValue>>> */
private array $referenceData;
/** @var I18nValue&PHPUnit\Framework\MockObject\MockObject */