diff --git a/Classes/Backports/V12/Pagination/SlidingWindowPagination.php b/Classes/Backports/V12/Pagination/SlidingWindowPagination.php index 50c5f19..ec77939 100644 --- a/Classes/Backports/V12/Pagination/SlidingWindowPagination.php +++ b/Classes/Backports/V12/Pagination/SlidingWindowPagination.php @@ -2,7 +2,7 @@ declare(strict_types=1); -namespace Wrm\Events\Backports\V12\Pagination; +namespace WerkraumMedia\Events\Backports\V12\Pagination; // Original source: https://github.com/TYPO3/typo3/blob/b60cf59fbe7875aff5ee1ba4c56155301694d6b8/typo3/sysext/core/Classes/Pagination/SlidingWindowPagination.php // Remove once we have v12 as minimum version. diff --git a/Classes/Caching/CacheManager.php b/Classes/Caching/CacheManager.php index 0856ed3..655a631 100644 --- a/Classes/Caching/CacheManager.php +++ b/Classes/Caching/CacheManager.php @@ -21,7 +21,7 @@ declare(strict_types=1); * 02110-1301, USA. */ -namespace Wrm\Events\Caching; +namespace WerkraumMedia\Events\Caching; use TYPO3\CMS\Core\Cache\CacheManager as Typo3CacheManager; use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer; diff --git a/Classes/Caching/PageCacheTimeout.php b/Classes/Caching/PageCacheTimeout.php index 6059ed9..e64cc26 100644 --- a/Classes/Caching/PageCacheTimeout.php +++ b/Classes/Caching/PageCacheTimeout.php @@ -21,7 +21,7 @@ declare(strict_types=1); * 02110-1301, USA. */ -namespace Wrm\Events\Caching; +namespace WerkraumMedia\Events\Caching; use DateTime; use DateTimeImmutable; @@ -30,8 +30,8 @@ use TYPO3\CMS\Core\Cache\CacheManager; use TYPO3\CMS\Core\Cache\Frontend\FrontendInterface; use TYPO3\CMS\Core\Context\Context; use TYPO3\CMS\Core\SingletonInterface; -use Wrm\Events\Domain\Model\Date; -use Wrm\Events\Events\Controller\DateListVariables; +use WerkraumMedia\Events\Domain\Model\Date; +use WerkraumMedia\Events\Events\Controller\DateListVariables; /** * Teaches TYPO3 to set proper timeout for page cache. diff --git a/Classes/Command/ImportDestinationDataViaAllConfigruationsCommand.php b/Classes/Command/ImportDestinationDataViaAllConfigruationsCommand.php index aaf63f9..381d02a 100644 --- a/Classes/Command/ImportDestinationDataViaAllConfigruationsCommand.php +++ b/Classes/Command/ImportDestinationDataViaAllConfigruationsCommand.php @@ -1,13 +1,13 @@ @@ -21,14 +21,13 @@ namespace Wrm\Events\Controller; * 02110-1301, USA. */ -use TYPO3\CMS\Core\Exception\Page\PageNotFoundException; use TYPO3\CMS\Core\Http\ImmediateResponseException; use TYPO3\CMS\Core\Http\PropagateResponseException; use TYPO3\CMS\Core\Utility\GeneralUtility; use TYPO3\CMS\Extbase\Mvc\Controller\ActionController; use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer; use TYPO3\CMS\Frontend\Controller\ErrorController; -use Wrm\Events\Caching\CacheManager; +use WerkraumMedia\Events\Caching\CacheManager; class AbstractController extends ActionController { diff --git a/Classes/Controller/DateController.php b/Classes/Controller/DateController.php index eecb7e4..512e06c 100644 --- a/Classes/Controller/DateController.php +++ b/Classes/Controller/DateController.php @@ -1,20 +1,20 @@ diff --git a/Classes/Domain/Model/Dto/EventDemand.php b/Classes/Domain/Model/Dto/EventDemand.php index 6a04c09..8263dc8 100644 --- a/Classes/Domain/Model/Dto/EventDemand.php +++ b/Classes/Domain/Model/Dto/EventDemand.php @@ -1,6 +1,6 @@ diff --git a/Classes/Domain/Model/Event.php b/Classes/Domain/Model/Event.php index c072e21..bf26f1b 100644 --- a/Classes/Domain/Model/Event.php +++ b/Classes/Domain/Model/Event.php @@ -1,12 +1,12 @@ diff --git a/Classes/Domain/Model/Region.php b/Classes/Domain/Model/Region.php index 01c9388..020fac9 100644 --- a/Classes/Domain/Model/Region.php +++ b/Classes/Domain/Model/Region.php @@ -1,6 +1,6 @@ @@ -26,7 +26,7 @@ namespace Wrm\Events\Domain\Repository; use TYPO3\CMS\Core\Database\ConnectionPool; use TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper; use TYPO3\CMS\Extbase\Persistence\Repository; -use Wrm\Events\Domain\Model\Category; +use WerkraumMedia\Events\Domain\Model\Category; class CategoryRepository extends Repository { diff --git a/Classes/Domain/Repository/DateRepository.php b/Classes/Domain/Repository/DateRepository.php index b1224be..fa475c1 100644 --- a/Classes/Domain/Repository/DateRepository.php +++ b/Classes/Domain/Repository/DateRepository.php @@ -1,6 +1,6 @@ @@ -24,7 +24,7 @@ namespace Wrm\Events\Extbase; use TYPO3\CMS\Core\Database\ConnectionPool; use TYPO3\CMS\Extbase\Event\Persistence\AfterObjectThawedEvent; use TYPO3\CMS\Extbase\Persistence\Generic\Mapper\DataMapper; -use Wrm\Events\Domain\Model\Date; +use WerkraumMedia\Events\Domain\Model\Date; class AddSpecialProperties { diff --git a/Classes/Pagination/Factory.php b/Classes/Pagination/Factory.php index be4ff12..b61ca26 100644 --- a/Classes/Pagination/Factory.php +++ b/Classes/Pagination/Factory.php @@ -2,12 +2,12 @@ declare(strict_types=1); -namespace Wrm\Events\Pagination; +namespace WerkraumMedia\Events\Pagination; use TYPO3\CMS\Core\Pagination\PaginationInterface; use TYPO3\CMS\Extbase\Pagination\QueryResultPaginator; use TYPO3\CMS\Extbase\Persistence\QueryResultInterface; -use Wrm\Events\Backports\V12\Pagination\SlidingWindowPagination; +use WerkraumMedia\Events\Backports\V12\Pagination\SlidingWindowPagination; class Factory { diff --git a/Classes/Service/CategoryService.php b/Classes/Service/CategoryService.php index af3ac4f..e24c56e 100644 --- a/Classes/Service/CategoryService.php +++ b/Classes/Service/CategoryService.php @@ -1,6 +1,6 @@ diff --git a/Classes/Service/Cleanup/Files.php b/Classes/Service/Cleanup/Files.php index 20411ee..45171ac 100644 --- a/Classes/Service/Cleanup/Files.php +++ b/Classes/Service/Cleanup/Files.php @@ -1,6 +1,6 @@ diff --git a/Classes/Service/CleanupService.php b/Classes/Service/CleanupService.php index cb58646..7efb28e 100644 --- a/Classes/Service/CleanupService.php +++ b/Classes/Service/CleanupService.php @@ -1,9 +1,9 @@ @@ -46,7 +46,7 @@ use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer; * plugin.tx_events { * settings { * dataProcessing { - * Wrm\Events\Domain\Model\Event { + * WerkraumMedia\Events\Domain\Model\Event { * 10 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor * 10 { * special = list diff --git a/Classes/Service/DestinationDataImportService.php b/Classes/Service/DestinationDataImportService.php index d54305b..e10e561 100644 --- a/Classes/Service/DestinationDataImportService.php +++ b/Classes/Service/DestinationDataImportService.php @@ -1,6 +1,6 @@ [ + \WerkraumMedia\Events\Domain\Model\Category::class => [ 'tableName' => 'sys_category', ], ]; diff --git a/Configuration/Services.php b/Configuration/Services.php index 6e76670..e0cced3 100644 --- a/Configuration/Services.php +++ b/Configuration/Services.php @@ -2,13 +2,13 @@ declare(strict_types=1); -namespace Wrm\Events; +namespace WerkraumMedia\Events; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; -use Wrm\Events\Service\DestinationDataImportService\Slugger\Registry; -use Wrm\Events\Service\DestinationDataImportService\Slugger\SluggerType; +use WerkraumMedia\Events\Service\DestinationDataImportService\Slugger\Registry; +use WerkraumMedia\Events\Service\DestinationDataImportService\Slugger\SluggerType; return static function (ContainerConfigurator $container, ContainerBuilder $containerBuilder) { $containerBuilder->registerForAutoconfiguration(SluggerType::class)->addTag('tx_events.slugger_type'); diff --git a/Configuration/Services.yaml b/Configuration/Services.yaml index 060160b..b3020fb 100644 --- a/Configuration/Services.yaml +++ b/Configuration/Services.yaml @@ -4,47 +4,47 @@ services: autoconfigure: true public: false - Wrm\Events\: + WerkraumMedia\Events\: resource: '../Classes/*' - Wrm\Events\Command\ImportDestinationDataViaConfigruationCommand: + WerkraumMedia\Events\Command\ImportDestinationDataViaConfigruationCommand: tags: - name: 'console.command' command: 'events:destinationdataimportviaconfiguration' description: 'Import Destination Data Events' - Wrm\Events\Command\ImportDestinationDataViaAllConfigruationsCommand: + WerkraumMedia\Events\Command\ImportDestinationDataViaAllConfigruationsCommand: tags: - name: 'console.command' command: 'events:destinationdataimportviaallconfigurations' description: 'Import Destination Data Events from all configurations' - Wrm\Events\Command\RemoveAllCommand: + WerkraumMedia\Events\Command\RemoveAllCommand: tags: - name: 'console.command' command: 'events:removeAll' description: 'Remove all event data' - Wrm\Events\Command\RemovePastCommand: + WerkraumMedia\Events\Command\RemovePastCommand: tags: - name: 'console.command' command: 'events:removePast' description: 'Remove past events' - Wrm\Events\Extbase\AddSpecialProperties: + WerkraumMedia\Events\Extbase\AddSpecialProperties: tags: - name: event.listener - identifier: 'WrmEventsAddSpecialPropertiesToDate' + identifier: 'WerkraumMediaEventsAddSpecialPropertiesToDate' event: TYPO3\CMS\Extbase\Event\Persistence\AfterObjectThawedEvent - Wrm\Events\Updates\MigrateDuplicateLocations: + WerkraumMedia\Events\Updates\MigrateDuplicateLocations: public: true - Wrm\Events\Updates\MigrateOldLocations: + WerkraumMedia\Events\Updates\MigrateOldLocations: public: true - Wrm\Events\Caching\PageCacheTimeout: + WerkraumMedia\Events\Caching\PageCacheTimeout: tags: - name: event.listener - event: Wrm\Events\Events\Controller\DateListVariables + event: WerkraumMedia\Events\Events\Controller\DateListVariables method: 'trackDates' diff --git a/Configuration/TypoScript/setup.typoscript b/Configuration/TypoScript/setup.typoscript index 0eafeda..3b97691 100644 --- a/Configuration/TypoScript/setup.typoscript +++ b/Configuration/TypoScript/setup.typoscript @@ -58,7 +58,7 @@ plugin.tx_events { } dataProcessing { - Wrm\Events\Domain\Model\Event { + WerkraumMedia\Events\Domain\Model\Event { 10 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor 10 { special = list diff --git a/Documentation/Changelog/4.0.0.rst b/Documentation/Changelog/4.0.0.rst new file mode 100644 index 0000000..72581a2 --- /dev/null +++ b/Documentation/Changelog/4.0.0.rst @@ -0,0 +1,32 @@ +4.0.0 +===== + +Breaking +-------- + +* Change of vendor/namespace. + The vendor was renamed from `wrm` to `werkraummedia`. + And the namespace vendor was renamed from `Wrm` to `WerkraumMedia`. + + That way all references to PHP classes as well as the package name itself need to + be adjusted. + +Features +-------- + +Nothing + +Fixes +----- + +Nothing + +Tasks +----- + +Nothing + +Deprecation +----------- + +Nothing diff --git a/Documentation/Features/Caching.rst b/Documentation/Features/Caching.rst index 6819e77..db96b51 100644 --- a/Documentation/Features/Caching.rst +++ b/Documentation/Features/Caching.rst @@ -21,7 +21,7 @@ The TTL of the extension is determined in the following way: #. End of each shown date as fallback. -The corresponding code is ``Wrm\Events\Caching\PageCacheTimeout``. +The corresponding code is ``WerkraumMedia\Events\Caching\PageCacheTimeout``. That way the TTL of each page is not longer than the valid period for shown events, leading to re-rendering of the page once an event might change. diff --git a/Documentation/Index.rst b/Documentation/Index.rst index 21872ca..d340916 100644 --- a/Documentation/Index.rst +++ b/Documentation/Index.rst @@ -8,7 +8,7 @@ Events events :Package name: - wrm/events + werkraummedia/events :Language: en diff --git a/Documentation/Maintenance/TYPO3/V11.rst b/Documentation/Maintenance/TYPO3/V11.rst index 2fbf713..cd2ca9d 100644 --- a/Documentation/Maintenance/TYPO3/V11.rst +++ b/Documentation/Maintenance/TYPO3/V11.rst @@ -9,4 +9,4 @@ Remove ``SlidingWindowPagination`` backport. We backported https://docs.typo3.org/c/typo3/cms-core/main/en-us/Changelog/12.0/Feature-94625-IntroduceSlidingWindowPagination.html. That allowed us to use the new Code compatible with v12 onwards. -We should remove the file ``Classes/Backports/V12/Pagination/SlidingWindowPagination.php`` and switch to TYPO3 native class within ``Wrm\Events\Pagination\Factory``. +We should remove the file ``Classes/Backports/V12/Pagination/SlidingWindowPagination.php`` and switch to TYPO3 native class within ``WerkraumMedia\Events\Pagination\Factory``. diff --git a/Tests/ClientFactory.php b/Tests/ClientFactory.php index a04aec1..a35998f 100644 --- a/Tests/ClientFactory.php +++ b/Tests/ClientFactory.php @@ -1,6 +1,6 @@ 'list'] + [\WerkraumMedia\Events\Controller\DateController::class => 'list'] ); diff --git a/Tests/Functional/Frontend/Fixtures/TypoScript/Rendering.typoscript b/Tests/Functional/Frontend/Fixtures/TypoScript/Rendering.typoscript index 716ed1d..a8b7333 100644 --- a/Tests/Functional/Frontend/Fixtures/TypoScript/Rendering.typoscript +++ b/Tests/Functional/Frontend/Fixtures/TypoScript/Rendering.typoscript @@ -11,7 +11,7 @@ page { 10 { // Simulates foreign access prior our rendering. // TYPO3 has an internal cache in order to not recalculate timeout. - userFunc = Wrm\EventsExample\UserFunc->accessTsfeTimeout + userFunc = WerkraumMedia\EventsExample\UserFunc->accessTsfeTimeout } 20 < styles.content.get @@ -20,7 +20,7 @@ page { 30 { // Simulates further long running rendering. // In order to test that our ttl is calculated as expected. - userFunc = Wrm\EventsExample\UserFunc->sleep + userFunc = WerkraumMedia\EventsExample\UserFunc->sleep userFunc { sleep = 0 } diff --git a/Tests/Functional/Import/DestinationDataTest/AbstractTest.php b/Tests/Functional/Import/DestinationDataTest/AbstractTest.php index e4159f4..4da8d08 100644 --- a/Tests/Functional/Import/DestinationDataTest/AbstractTest.php +++ b/Tests/Functional/Import/DestinationDataTest/AbstractTest.php @@ -1,8 +1,8 @@ services() diff --git a/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Classes/EventListener/EventImportListener.php b/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Classes/EventListener/EventImportListener.php index 453fb80..89d9f28 100644 --- a/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Classes/EventListener/EventImportListener.php +++ b/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Classes/EventListener/EventImportListener.php @@ -23,7 +23,7 @@ declare(strict_types=1); namespace WerkraumMedia\CustomEvent\EventListener; -use Wrm\Events\Service\DestinationDataImportService\Events\EventImportEvent; +use WerkraumMedia\Events\Service\DestinationDataImportService\Events\EventImportEvent; final class EventImportListener { diff --git a/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Configuration/Services.php b/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Configuration/Services.php index fba8f94..78c544b 100644 --- a/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Configuration/Services.php +++ b/Tests/Functional/Psr14Events/DestinationDataImport/Fixtures/Extensions/custom_event/Configuration/Services.php @@ -5,7 +5,7 @@ declare(strict_types=1); namespace Symfony\Component\DependencyInjection\Loader\Configurator; use WerkraumMedia\CustomEvent\EventListener\EventImportListener; -use Wrm\Events\Service\DestinationDataImportService\Events\EventImportEvent; +use WerkraumMedia\Events\Service\DestinationDataImportService\Events\EventImportEvent; return static function (ContainerConfigurator $containerConfigurator) { $services = $containerConfigurator->services() diff --git a/Tests/Functional/Updates/MigrateDuplicateLocationsTest.php b/Tests/Functional/Updates/MigrateDuplicateLocationsTest.php index cb6d72c..218d28b 100644 --- a/Tests/Functional/Updates/MigrateDuplicateLocationsTest.php +++ b/Tests/Functional/Updates/MigrateDuplicateLocationsTest.php @@ -21,10 +21,10 @@ declare(strict_types=1); * 02110-1301, USA. */ -namespace Wrm\Events\Tests\Functional\Updates; +namespace WerkraumMedia\Events\Tests\Functional\Updates; -use Wrm\Events\Tests\Functional\AbstractFunctionalTestCase; -use Wrm\Events\Updates\MigrateDuplicateLocations; +use WerkraumMedia\Events\Tests\Functional\AbstractFunctionalTestCase; +use WerkraumMedia\Events\Updates\MigrateDuplicateLocations; /** * @testdox The update wizard to migrate duplicate locations diff --git a/Tests/ProphecyTrait.php b/Tests/ProphecyTrait.php index fd556c6..76dbf04 100644 --- a/Tests/ProphecyTrait.php +++ b/Tests/ProphecyTrait.php @@ -1,6 +1,6 @@ 'stable', 'createDirs' => '', 'clearCacheOnLoad' => 0, - 'version' => '3.5.2', + 'version' => '4.0.0', 'constraints' => [ 'depends' => [ 'typo3' => '10.4.00-11.5.99', diff --git a/ext_localconf.php b/ext_localconf.php index eab3554..49fe893 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -6,28 +6,28 @@ call_user_func(function () { \TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin( 'Events', 'DateSearch', - [\Wrm\Events\Controller\DateController::class => 'search'], - [\Wrm\Events\Controller\DateController::class => 'search'] + [\WerkraumMedia\Events\Controller\DateController::class => 'search'], + [\WerkraumMedia\Events\Controller\DateController::class => 'search'] ); \TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin( 'Events', 'DateList', - [\Wrm\Events\Controller\DateController::class => 'list'], - [\Wrm\Events\Controller\DateController::class => 'list'] + [\WerkraumMedia\Events\Controller\DateController::class => 'list'], + [\WerkraumMedia\Events\Controller\DateController::class => 'list'] ); \TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin( 'Events', 'DateShow', - [\Wrm\Events\Controller\DateController::class => 'show'], - [\Wrm\Events\Controller\DateController::class => 'show'] + [\WerkraumMedia\Events\Controller\DateController::class => 'show'], + [\WerkraumMedia\Events\Controller\DateController::class => 'show'] ); \TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin( 'Events', 'Selected', - [\Wrm\Events\Controller\EventController::class => 'list'] + [\WerkraumMedia\Events\Controller\EventController::class => 'list'] ); if ( @@ -51,7 +51,7 @@ call_user_func(function () { ['source' => 'EXT:events/Resources/Public/Icons/Folder.svg'] ); - \Wrm\Events\Caching\PageCacheTimeout::register(); - \Wrm\Events\Updates\MigrateOldLocations::register(); - \Wrm\Events\Updates\MigrateDuplicateLocations::register(); + \WerkraumMedia\Events\Caching\PageCacheTimeout::register(); + \WerkraumMedia\Events\Updates\MigrateOldLocations::register(); + \WerkraumMedia\Events\Updates\MigrateDuplicateLocations::register(); }); diff --git a/phpstan-baseline.neon b/phpstan-baseline.neon index e447268..c4d0d3a 100644 --- a/phpstan-baseline.neon +++ b/phpstan-baseline.neon @@ -21,12 +21,12 @@ parameters: path: Classes/Controller/DateController.php - - message: "#^Instanceof between Wrm\\\\Events\\\\Domain\\\\Model\\\\Category\\|null and TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\LazyLoadingProxy will always evaluate to false\\.$#" + message: "#^Instanceof between WerkraumMedia\\\\Events\\\\Domain\\\\Model\\\\Category\\|null and TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\Generic\\\\LazyLoadingProxy will always evaluate to false\\.$#" count: 1 path: Classes/Domain/Model/Category.php - - message: "#^Parameter \\#1 \\$categories of method Wrm\\\\Events\\\\Domain\\\\Model\\\\Event\\:\\:setCategories\\(\\) expects TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\, TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\ given\\.$#" + message: "#^Parameter \\#1 \\$categories of method WerkraumMedia\\\\Events\\\\Domain\\\\Model\\\\Event\\:\\:setCategories\\(\\) expects TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\, TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\ given\\.$#" count: 1 path: Classes/Service/DestinationDataImportService.php @@ -41,17 +41,17 @@ parameters: path: Classes/Domain/DestinationData/ImportFactory.php - - message: "#^Parameter \\#2 \\$callback of function usort expects callable\\(TEntity, TEntity\\)\\: int, Closure\\(Wrm\\\\Events\\\\Domain\\\\Model\\\\Category, Wrm\\\\Events\\\\Domain\\\\Model\\\\Category\\)\\: int\\<\\-1, 1\\> given\\.$#" + message: "#^Parameter \\#2 \\$callback of function usort expects callable\\(TEntity, TEntity\\)\\: int, Closure\\(WerkraumMedia\\\\Events\\\\Domain\\\\Model\\\\Category, WerkraumMedia\\\\Events\\\\Domain\\\\Model\\\\Category\\)\\: int\\<\\-1, 1\\> given\\.$#" count: 2 path: Classes/Domain/Model/Event.php - - message: "#^Method Wrm\\\\Events\\\\Domain\\\\Model\\\\Event\\:\\:getCategories\\(\\) should return array\\ but returns array\\\\.$#" + message: "#^Method WerkraumMedia\\\\Events\\\\Domain\\\\Model\\\\Event\\:\\:getCategories\\(\\) should return array\\ but returns array\\\\.$#" count: 1 path: Classes/Domain/Model/Event.php - - message: "#^Method Wrm\\\\Events\\\\Domain\\\\Model\\\\Event\\:\\:getFeatures\\(\\) should return array\\ but returns array\\\\.$#" + message: "#^Method WerkraumMedia\\\\Events\\\\Domain\\\\Model\\\\Event\\:\\:getFeatures\\(\\) should return array\\ but returns array\\\\.$#" count: 1 path: Classes/Domain/Model/Event.php @@ -86,22 +86,22 @@ parameters: path: Classes/Service/Cleanup/Files.php - - message: "#^Method Wrm\\\\Events\\\\Service\\\\Cleanup\\\\Files\\:\\:getPotentialFilesToDelete\\(\\) should return array\\ but returns array\\\\>\\.$#" + message: "#^Method WerkraumMedia\\\\Events\\\\Service\\\\Cleanup\\\\Files\\:\\:getPotentialFilesToDelete\\(\\) should return array\\ but returns array\\\\>\\.$#" count: 1 path: Classes/Service/Cleanup/Files.php - - message: "#^Parameter \\#1 \\$uid of class Wrm\\\\Events\\\\Service\\\\DestinationDataImportService\\\\DataHandler\\\\Assignment constructor expects int, int\\|null given\\.$#" + message: "#^Parameter \\#1 \\$uid of class WerkraumMedia\\\\Events\\\\Service\\\\DestinationDataImportService\\\\DataHandler\\\\Assignment constructor expects int, int\\|null given\\.$#" count: 2 path: Classes/Service/DestinationDataImportService.php - - message: "#^Parameter \\#3 \\$assignments of class Wrm\\\\Events\\\\Service\\\\DestinationDataImportService\\\\DataHandler\\\\Assignment constructor expects array\\, array\\ given\\.$#" + message: "#^Parameter \\#3 \\$assignments of class WerkraumMedia\\\\Events\\\\Service\\\\DestinationDataImportService\\\\DataHandler\\\\Assignment constructor expects array\\, array\\ given\\.$#" count: 2 path: Classes/Service/DestinationDataImportService.php - - message: "#^Method Wrm\\\\Events\\\\Service\\\\DestinationDataImportService\\\\CategoriesAssignment\\:\\:getCategories\\(\\) should return TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\ but returns TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\\\.$#" + message: "#^Method WerkraumMedia\\\\Events\\\\Service\\\\DestinationDataImportService\\\\CategoriesAssignment\\:\\:getCategories\\(\\) should return TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\ but returns TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\\\.$#" count: 2 path: Classes/Service/DestinationDataImportService/CategoriesAssignment.php @@ -116,7 +116,7 @@ parameters: path: Classes/Updates/MigrateOldLocations.php - - message: "#^Method Wrm\\\\Events\\\\Service\\\\DestinationDataImportService\\\\FilesAssignment\\:\\:getImages\\(\\) should return TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\ but returns TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\\\.$#" + message: "#^Method WerkraumMedia\\\\Events\\\\Service\\\\DestinationDataImportService\\\\FilesAssignment\\:\\:getImages\\(\\) should return TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\ but returns TYPO3\\\\CMS\\\\Extbase\\\\Persistence\\\\ObjectStorage\\\\.$#" count: 1 path: Classes/Service/DestinationDataImportService/FilesAssignment.php @@ -136,7 +136,7 @@ parameters: path: Classes/Updates/MigrateOldLocations.php - - message: "#^Method Wrm\\\\Events\\\\Updates\\\\MigrateOldLocations\\:\\:getExitingLocationUid\\(\\) should return int but returns mixed\\.$#" + message: "#^Method WerkraumMedia\\\\Events\\\\Updates\\\\MigrateOldLocations\\:\\:getExitingLocationUid\\(\\) should return int but returns mixed\\.$#" count: 1 path: Classes/Updates/MigrateOldLocations.php