Skip to content

Commit 48235b2

Browse files
committed
Define test classes as final
1 parent 9598cd7 commit 48235b2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/Unit/Connectors/PubSubConnectorTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use PHPUnit\Framework\TestCase;
99
use ReflectionClass;
1010

11-
class PubSubConnectorTests extends TestCase
11+
final class PubSubConnectorTests extends TestCase
1212
{
1313
public function testImplementsConnectorInterface(): void
1414
{

tests/Unit/Jobs/PubSubJobTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use PHPUnit\Framework\TestCase;
1212
use ReflectionClass;
1313

14-
class PubSubJobTests extends TestCase
14+
final class PubSubJobTests extends TestCase
1515
{
1616
/**
1717
* @var string

tests/Unit/PubSubQueueTests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
use PHPUnit\Framework\TestCase;
1515
use ReflectionClass;
1616

17-
class PubSubQueueTests extends TestCase
17+
final class PubSubQueueTests extends TestCase
1818
{
1919
/**
2020
* @var string

0 commit comments

Comments
 (0)