Skip to content

Commit

Permalink
[TASK] Unify descriptions for fixture classes of abstract classes
Browse files Browse the repository at this point in the history
There is no point repeating the name of the extended class in the
class PHPDoc comment.

This makes creating new fixture classes less of a hassle.

This is a separate change in order to make the other changes that
get rid of `getMockForAbstractClass` shorter and more focused,
following the "one kind of change per change" principle.

Resolves: #101665
Related: #101601
Releases: main, 12.4
Change-Id: I7ee95e63149ff90c6f5817438e5b4634d04f4e93
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/80947
Tested-by: Benjamin Franzke <ben@bnf.dev>
Reviewed-by: Benjamin Franzke <ben@bnf.dev>
Tested-by: core-ci <typo3@b13.com>
  • Loading branch information
oliverklee authored and bnf committed Sep 11, 2023
1 parent 3cc3fe3 commit 8cc9ba2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Expand Up @@ -21,7 +21,7 @@
use TYPO3\CMS\Core\Log\Processor\AbstractMemoryProcessor;

/**
* Testing subclass of `AbstractMemoryProcessor`.
* Testing subclass of the abstract class.
*/
final class TestingMemoryProcessor extends AbstractMemoryProcessor
{
Expand Down
Expand Up @@ -20,7 +20,7 @@
use TYPO3\CMS\Core\Resource\Collection\AbstractFileCollection;

/**
* Testing subclass of `AbstractFileCollection`.
* Testing subclass of the abstract class.
*/
final class TestingFileCollection extends AbstractFileCollection
{
Expand Down
Expand Up @@ -20,7 +20,7 @@
use TYPO3\CMS\Core\Resource\Driver\AbstractDriver;

/**
* Testing subclass of `AbstractDriver`.
* Testing subclass of the abstract class.
*/
final class TestingDriver extends AbstractDriver
{
Expand Down
Expand Up @@ -20,7 +20,7 @@
use TYPO3\CMS\Core\Resource\AbstractRepository;

/**
* Testing subclass of `AbstractRepository`.
* Testing subclass of the abstract class.
*/
final class TestingRepository extends AbstractRepository
{
Expand Down

0 comments on commit 8cc9ba2

Please sign in to comment.