mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-10 05:56:09 +01:00
Daniel Siepmann
b829a25738
Using: ./vendor/bin/typo3-rector process Classes Configuration ext_* Relates: #8092
16 lines
418 B
PHP
16 lines
418 B
PHP
<?php
|
||
|
||
use Wrm\Events\Command\DestinationDataImportCommand;
|
||
use Wrm\Events\Command\RemoveAllCommand;
|
||
use Wrm\Events\Command\RemovePastCommand;
|
||
return [
|
||
'events:destinationdataimport‚' => [
|
||
'class' => DestinationDataImportCommand::class
|
||
],
|
||
'events:removeAll' => [
|
||
'class' => RemoveAllCommand::class
|
||
],
|
||
'events:removePast' => [
|
||
'class' => RemovePastCommand::class
|
||
],
|
||
];
|