2019-07-18 13:44:19 +02:00
|
|
|
|
<?php
|
2021-01-07 08:47:15 +01:00
|
|
|
|
|
|
|
|
|
use Wrm\Events\Command\DestinationDataImportCommand;
|
|
|
|
|
use Wrm\Events\Command\RemoveAllCommand;
|
|
|
|
|
use Wrm\Events\Command\RemovePastCommand;
|
2019-07-18 13:44:19 +02:00
|
|
|
|
return [
|
2019-08-12 07:43:37 +02:00
|
|
|
|
'events:destinationdataimport‚' => [
|
2021-01-07 08:47:15 +01:00
|
|
|
|
'class' => DestinationDataImportCommand::class
|
2019-09-17 17:14:28 +02:00
|
|
|
|
],
|
|
|
|
|
'events:removeAll' => [
|
2021-01-07 08:47:15 +01:00
|
|
|
|
'class' => RemoveAllCommand::class
|
2019-09-17 17:14:28 +02:00
|
|
|
|
],
|
2019-09-19 09:09:42 +02:00
|
|
|
|
'events:removePast' => [
|
2021-01-07 08:47:15 +01:00
|
|
|
|
'class' => RemovePastCommand::class
|
2019-09-19 09:09:42 +02:00
|
|
|
|
],
|
2019-09-17 17:14:28 +02:00
|
|
|
|
];
|