diff options
| author | 2025-09-14 21:27:55 +0200 | |
|---|---|---|
| committer | 2025-09-14 21:27:55 +0200 | |
| commit | a7e633bc58bb8ebf466241dac99c58bdafdab937 (patch) | |
| tree | d39cfb548cddf331d39af921e09089f80867c955 /tests/app/Utils | |
| parent | 697240813d9f086bff30b7e6424538fbef933359 (diff) | |
Minor explicit namespace fix for PHPUnit (#7960)
* Minor explicit namespace fix for PHPUnit
* final
Diffstat (limited to 'tests/app/Utils')
| -rw-r--r-- | tests/app/Utils/dotNotationUtilTest.php | 2 | ||||
| -rw-r--r-- | tests/app/Utils/passwordUtilTest.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/app/Utils/dotNotationUtilTest.php b/tests/app/Utils/dotNotationUtilTest.php index 787d3ddf3..5efa85295 100644 --- a/tests/app/Utils/dotNotationUtilTest.php +++ b/tests/app/Utils/dotNotationUtilTest.php @@ -3,7 +3,7 @@ declare(strict_types=1); use PHPUnit\Framework\Attributes\DataProvider; -class dotNotationUtilTest extends PHPUnit\Framework\TestCase { +final class dotNotationUtilTest extends \PHPUnit\Framework\TestCase { /** * @return Traversable<array{array<string,mixed>,string,string}> diff --git a/tests/app/Utils/passwordUtilTest.php b/tests/app/Utils/passwordUtilTest.php index c6d7a37e9..2d98c5051 100644 --- a/tests/app/Utils/passwordUtilTest.php +++ b/tests/app/Utils/passwordUtilTest.php @@ -1,7 +1,7 @@ <?php declare(strict_types=1); -class passwordUtilTest extends PHPUnit\Framework\TestCase { +final class passwordUtilTest extends \PHPUnit\Framework\TestCase { public function testCheck(): void { $password = '1234567'; |
