Actions
Bug #95686
closedChange Paginator and Pagination final classes to virtual classes
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2021-10-18
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Currently the core-shipped Paginator and Pagination classes are declared final
.
I want to override them to change a small detail in their implementation for my specific project. I can not do so because of final
, but have to copy-paste most of it instead of just extend
-ing them.
TYPO3 provides an API framework to extend on, not a "finished" ready-for-market software, so no public API classes should ever be final (only purely internal non-public-API classes may be final).
Actions