Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 0.3.1 Under development

- Bug #14: Update descriptions in stub classes to clarify purpose (@terabytesoftw)

## 0.3.0 January 19, 2026

- Enh #13: Refactor codebase to improve performance (@terabytesoftw)
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/TestBackedEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace PHPForge\Support\Tests\Stub;

/**
* Backed enum stub for tests.
* Stub for a backed enum.
*
* Provides deterministic backed values required by the test suite.
*
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/TestBaseClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace PHPForge\Support\Tests\Stub;

/**
* Abstract base class providing a protected method and private property for testing inheritance scenarios.
* Stub for an abstract base class providing a protected method and private property for testing inheritance scenarios.
*
* Serves as a parent class in test stubs to verify property visibility and method accessibility in child classes.
*
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/TestClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace PHPForge\Support\Tests\Stub;

/**
* Concrete test class extending TestBaseClass for inheritance and visibility testing.
* Stub for a concrete test class extending TestBaseClass for inheritance and visibility testing.
*
* Provides a private property and a protected method to verify property and method accessibility in child classes.
*
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/TestEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace PHPForge\Support\Tests\Stub;

/**
* Test enum for {@see \PHPForge\Support\EnumDataProvider} dataset generation.
* Stub for a test enum for {@see \PHPForge\Support\EnumDataProvider} dataset generation.
*
* @copyright Copyright (C) 2026 Terabytesoftw.
* @license https://opensource.org/license/bsd-3-clause BSD 3-Clause License.
Expand Down
2 changes: 1 addition & 1 deletion tests/Stub/TestIntBackedEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace PHPForge\Support\Tests\Stub;

/**
* Backed enum stub for tests.
* Stub for a backed enum.
*
* Provides deterministic integer-backed values required by the test suite.
*
Expand Down
Loading