make classes final

This commit is contained in:
Dennis Eichhorn 2021-10-21 22:19:49 +02:00
parent 6dd9fad78c
commit 4b0bb0d0de
7 changed files with 7 additions and 7 deletions

View File

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

View File

@ -22,7 +22,7 @@ use Modules\Comments\Models\CommentListMapper;
/** /**
* @internal * @internal
*/ */
class CommentListMapperTest extends \PHPUnit\Framework\TestCase final class CommentListMapperTest extends \PHPUnit\Framework\TestCase
{ {
/** /**
* @covers Modules\Comments\Models\CommentListMapper * @covers Modules\Comments\Models\CommentListMapper

View File

@ -20,7 +20,7 @@ use Modules\Comments\Models\CommentList;
/** /**
* @internal * @internal
*/ */
class CommentListTest extends \PHPUnit\Framework\TestCase final class CommentListTest extends \PHPUnit\Framework\TestCase
{ {
private CommentList $list; private CommentList $list;

View File

@ -22,7 +22,7 @@ use Modules\Comments\Models\CommentMapper;
/** /**
* @internal * @internal
*/ */
class CommentMapperTest extends \PHPUnit\Framework\TestCase final class CommentMapperTest extends \PHPUnit\Framework\TestCase
{ {
/** /**
* @covers Modules\Comments\Models\CommentMapper * @covers Modules\Comments\Models\CommentMapper

View File

@ -23,7 +23,7 @@ use Modules\Comments\Models\NullComment;
/** /**
* @internal * @internal
*/ */
class CommentTest extends \PHPUnit\Framework\TestCase final class CommentTest extends \PHPUnit\Framework\TestCase
{ {
private Comment $comment; private Comment $comment;

View File

@ -25,7 +25,7 @@ use Modules\Comments\Models\CommentVoteMapper;
/** /**
* @internal * @internal
*/ */
class CommentVoteMapperTest extends \PHPUnit\Framework\TestCase final class CommentVoteMapperTest extends \PHPUnit\Framework\TestCase
{ {
/** /**
* @covers Modules\Comments\Models\CommentVote * @covers Modules\Comments\Models\CommentVote

View File

@ -19,7 +19,7 @@ use Modules\Comments\Models\CommentVote;
/** /**
* @internal * @internal
*/ */
class CommentVoteTest extends \PHPUnit\Framework\TestCase final class CommentVoteTest extends \PHPUnit\Framework\TestCase
{ {
private CommentVote $vote; private CommentVote $vote;