1 | <?php |
||
24 | class CleanupCommandController extends \TYPO3\CMS\Extbase\Mvc\Controller\CommandController |
||
25 | { |
||
26 | /** |
||
27 | * Configurationmanager |
||
28 | * |
||
29 | * @var \TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface |
||
30 | */ |
||
31 | protected $configurationManager; |
||
32 | |||
33 | /** |
||
34 | * UtilityService |
||
35 | * |
||
36 | * @var \DERHANSEN\SfEventMgt\Service\UtilityService |
||
37 | */ |
||
38 | protected $utilityService = null; |
||
39 | |||
40 | /** |
||
41 | * Registrationservice |
||
42 | * |
||
43 | * @var \DERHANSEN\SfEventMgt\Service\RegistrationService |
||
44 | */ |
||
45 | protected $registrationService; |
||
46 | |||
47 | /** |
||
48 | * DI for $configurationManager |
||
49 | * |
||
50 | * @param ConfigurationManagerInterface $configurationManager |
||
51 | */ |
||
52 | public function injectConfigurationManager( |
||
57 | |||
58 | 1 | /** |
|
59 | 1 | * DI for $registrationService |
|
60 | 1 | * |
|
61 | * @param \DERHANSEN\SfEventMgt\Service\RegistrationService $registrationService |
||
62 | 1 | */ |
|
63 | public function injectRegistrationService(\DERHANSEN\SfEventMgt\Service\RegistrationService $registrationService) |
||
67 | |||
68 | /** |
||
69 | 1 | * DI for $utilityService |
|
70 | 1 | * |
|
71 | * @param \DERHANSEN\SfEventMgt\Service\UtilityService $utilityService |
||
72 | */ |
||
73 | public function injectUtilityService(\DERHANSEN\SfEventMgt\Service\UtilityService $utilityService) |
||
77 | |||
78 | /** |
||
79 | * The cleanup command |
||
80 | * |
||
81 | * @return void |
||
82 | */ |
||
83 | public function cleanupCommand() |
||
99 | } |
||
100 |