Skip to content

Commit a2a2723

Browse files
committed
change tests classes to final classes
1 parent ab833ed commit a2a2723

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- Minor readme and Travis CI updates
1111

1212
## 2.0.0 - 2021/01/26
13-
- use `splitbrain/phpfarm:jessie` as Docker image and fix docker image settings
13+
- Use `splitbrain/phpfarm:jessie` as Docker image and fix docker image settings
1414
- Code requires PHP >= 7.4
1515
- Code cleaning
1616
- Update README

tests/AttributeHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @internal
1111
* @coversDefaultClass
1212
*/
13-
class AttributeHandlerTest extends TestCase
13+
final class AttributeHandlerTest extends TestCase
1414
{
1515
public function testGetName()
1616
{

tests/DomDocumentHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @internal
1515
* @coversDefaultClass
1616
*/
17-
class DomDocumentHandlerTest extends TestCase
17+
final class DomDocumentHandlerTest extends TestCase
1818
{
1919
protected static ?DomDocumentHandler $actonInstance;
2020
protected static ?DomDocumentHandler $ebayInstance;

tests/ElementHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @internal
1414
* @coversDefaultClass
1515
*/
16-
class ElementHandlerTest extends TestCase
16+
final class ElementHandlerTest extends TestCase
1717
{
1818
public function testHasAttribute()
1919
{

tests/NameSpaceHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @internal
99
* @coversDefaultClass
1010
*/
11-
class NameSpaceHandlerTest extends TestCase
11+
final class NameSpaceHandlerTest extends TestCase
1212
{
1313
public function testGetParent()
1414
{

tests/NodeHandlerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @internal
1212
* @coversDefaultClass
1313
*/
14-
class NodeHandlerTest extends TestCase
14+
final class NodeHandlerTest extends TestCase
1515
{
1616
public function testGetName()
1717
{

0 commit comments

Comments
 (0)