[!!!][TASK] Decouple FileRepository and ProcessedFileRepository
When FAL was introduced in TYPO3 v6.0, some concepts were introduced which aren't so smart, 11 years later. * Building an AbstractRepository * Using Extbase RepositoryInterface in FAL repositories The shared code between the two implementing classes, FileRepository and AbstractFileRepository isn't justified to use an AbstractRepository which dynamically creates objects through inheritance for its subclass repositories. Instead, the AbstractRepository is now removed and both FileRepository and ProcessedFileRepository are now free, and can also use DI in a way it was meant. For this reason, the whole AbstractRepository class within the "TYPO3\CMS\Core\Resource" namespace is removed along with the dependency to Extbase in this regard. FileRepository and ProcessedFileRepository now only contain the methods they require, and all methods and properties are fully typed. Resolves: #101948 Releases: main Change-Id: I5a1f1fb899e94836cb16c85c2048d...
Showing
- Build/phpstan/phpstan-baseline.neon 0 additions, 10 deletionsBuild/phpstan/phpstan-baseline.neon
- typo3/sysext/backend/Classes/View/BackendLayout/DefaultDataProvider.php 1 addition, 1 deletion...ackend/Classes/View/BackendLayout/DefaultDataProvider.php
- typo3/sysext/core/Classes/Controller/FileDumpController.php 3 additions, 4 deletionstypo3/sysext/core/Classes/Controller/FileDumpController.php
- typo3/sysext/core/Classes/Resource/AbstractRepository.php 0 additions, 320 deletionstypo3/sysext/core/Classes/Resource/AbstractRepository.php
- typo3/sysext/core/Classes/Resource/FileRepository.php 51 additions, 53 deletionstypo3/sysext/core/Classes/Resource/FileRepository.php
- typo3/sysext/core/Classes/Resource/ProcessedFileRepository.php 107 additions, 127 deletions.../sysext/core/Classes/Resource/ProcessedFileRepository.php
- typo3/sysext/core/Classes/ServiceProvider.php 4 additions, 1 deletiontypo3/sysext/core/Classes/ServiceProvider.php
- typo3/sysext/core/Configuration/Services.yaml 3 additions, 0 deletionstypo3/sysext/core/Configuration/Services.yaml
- typo3/sysext/core/Documentation/Changelog/13.0/Breaking-101948-FileBasedAbstractRepositoryClassRemoved.rst 77 additions, 0 deletions...eaking-101948-FileBasedAbstractRepositoryClassRemoved.rst
- typo3/sysext/core/Tests/Unit/Resource/Repository/AbstractRepositoryTest.php 0 additions, 58 deletions...Tests/Unit/Resource/Repository/AbstractRepositoryTest.php
- typo3/sysext/core/Tests/Unit/Resource/Repository/Fixtures/TestingRepository.php 0 additions, 36 deletions...s/Unit/Resource/Repository/Fixtures/TestingRepository.php
- typo3/sysext/frontend/Classes/Resource/FileCollector.php 4 additions, 4 deletionstypo3/sysext/frontend/Classes/Resource/FileCollector.php
- typo3/sysext/install/Classes/Service/Typo3tempFileService.php 1 addition, 2 deletions...3/sysext/install/Classes/Service/Typo3tempFileService.php
- typo3/sysext/install/Configuration/ExtensionScanner/Php/ClassNameMatcher.php 5 additions, 0 deletions...l/Configuration/ExtensionScanner/Php/ClassNameMatcher.php
Please register or sign in to comment