From 9dde5aabb8a5ad97d4e83f06b6dd6f179fe169a8 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 21 Oct 2021 22:19:50 +0200 Subject: [PATCH] make classes final --- tests/Admin/AdminTest.php | 2 +- tests/Controller/SearchControllerTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Admin/AdminTest.php b/tests/Admin/AdminTest.php index 128046b..1f731d2 100755 --- a/tests/Admin/AdminTest.php +++ b/tests/Admin/AdminTest.php @@ -17,7 +17,7 @@ namespace Modules\Help\tests\Admin; /** * @internal */ -class AdminTest extends \PHPUnit\Framework\TestCase +final class AdminTest extends \PHPUnit\Framework\TestCase { protected const NAME = 'Help'; diff --git a/tests/Controller/SearchControllerTest.php b/tests/Controller/SearchControllerTest.php index 89e3d56..9255ec3 100755 --- a/tests/Controller/SearchControllerTest.php +++ b/tests/Controller/SearchControllerTest.php @@ -35,7 +35,7 @@ use phpOMS\Utils\TestUtils; * * @internal */ -class SearchControllerTest extends \PHPUnit\Framework\TestCase +final class SearchControllerTest extends \PHPUnit\Framework\TestCase { protected ApplicationAbstract $app;