make classes final

This commit is contained in:
Dennis Eichhorn 2021-10-21 22:19:51 +02:00
parent 0b7beaecb2
commit 6f95b19504
4 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ namespace Modules\Profile\tests\Admin;
/**
* @internal
*/
class AdminTest extends \PHPUnit\Framework\TestCase
final class AdminTest extends \PHPUnit\Framework\TestCase
{
protected const NAME = 'Profile';

View File

@ -36,7 +36,7 @@ use phpOMS\Utils\TestUtils;
/**
* @internal
*/
class ApiControllerTest extends \PHPUnit\Framework\TestCase
final class ApiControllerTest extends \PHPUnit\Framework\TestCase
{
protected $app = null;

View File

@ -23,7 +23,7 @@ use Modules\Profile\Models\ProfileMapper;
/**
* @internal
*/
class ProfileMapperTest extends \PHPUnit\Framework\TestCase
final class ProfileMapperTest extends \PHPUnit\Framework\TestCase
{
/**
* @covers Modules\Profile\Models\ProfileMapper

View File

@ -25,7 +25,7 @@ use phpOMS\Stdlib\Base\Location;
/**
* @internal
*/
class ProfileTest extends \PHPUnit\Framework\TestCase
final class ProfileTest extends \PHPUnit\Framework\TestCase
{
private Profile $profile;