Skip to content

Commit 67b04fd

Browse files
committed
fix(tests): Update descriptions in stub classes to clarify purpose.
1 parent 72d8356 commit 67b04fd

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 0.3.1 Under development
44

5+
- Bug #14: Update descriptions in stub classes to clarify purpose (@terabytesoftw)
6+
57
## 0.3.0 January 19, 2026
68

79
- Enh #13: Refactor codebase to improve performance (@terabytesoftw)

tests/Stub/TestBackedEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPForge\Support\Tests\Stub;
66

77
/**
8-
* Backed enum stub for tests.
8+
* Stub for a backed enum.
99
*
1010
* Provides deterministic backed values required by the test suite.
1111
*

tests/Stub/TestBaseClass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPForge\Support\Tests\Stub;
66

77
/**
8-
* Abstract base class providing a protected method and private property for testing inheritance scenarios.
8+
* Stub for a abstract base class providing a protected method and private property for testing inheritance scenarios.
99
*
1010
* Serves as a parent class in test stubs to verify property visibility and method accessibility in child classes.
1111
*

tests/Stub/TestClass.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPForge\Support\Tests\Stub;
66

77
/**
8-
* Concrete test class extending TestBaseClass for inheritance and visibility testing.
8+
* Stub for a concrete test class extending TestBaseClass for inheritance and visibility testing.
99
*
1010
* Provides a private property and a protected method to verify property and method accessibility in child classes.
1111
*

tests/Stub/TestEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPForge\Support\Tests\Stub;
66

77
/**
8-
* Test enum for {@see \PHPForge\Support\EnumDataProvider} dataset generation.
8+
* Stub for a test enum for {@see \PHPForge\Support\EnumDataProvider} dataset generation.
99
*
1010
* @copyright Copyright (C) 2026 Terabytesoftw.
1111
* @license https://opensource.org/license/bsd-3-clause BSD 3-Clause License.

tests/Stub/TestIntBackedEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace PHPForge\Support\Tests\Stub;
66

77
/**
8-
* Backed enum stub for tests.
8+
* Stub for a nacked enum.
99
*
1010
* Provides deterministic integer-backed values required by the test suite.
1111
*

0 commit comments

Comments
 (0)