|
@@ -55,42 +55,42 @@ |
|
|
block discarded – undo |
55
|
55
|
public function getFactories(): array |
56
|
56
|
{ |
57
|
57
|
return [ |
58
|
|
- Http\Application::class => [ static::class, 'getApplication' ], |
59
|
|
- Http\NotFoundRequestHandler::class => [ static::class, 'getNotFoundRequestHandler' ], |
60
|
|
- Service\ClearCacheService::class => [ static::class, 'getClearCacheService' ], |
61
|
|
- Service\CoreUpdateService::class => [ static::class, 'getCoreUpdateService' ], |
62
|
|
- Service\CoreVersionService::class => [ static::class, 'getCoreVersionService' ], |
63
|
|
- Service\ExtensionConfigurationService::class => [ static::class, 'getExtensionConfigurationService' ], |
64
|
|
- Service\LanguagePackService::class => [ static::class, 'getLanguagePackService' ], |
65
|
|
- Service\LateBootService::class => [ static::class, 'getLateBootService' ], |
66
|
|
- Service\LoadTcaService::class => [ static::class, 'getLoadTcaService' ], |
67
|
|
- Service\SilentConfigurationUpgradeService::class => [ static::class, 'getSilentConfigurationUpgradeService' ], |
68
|
|
- Service\SilentTemplateFileUpgradeService::class => [ static::class, 'getSilentTemplateFileUpgradeService' ], |
69
|
|
- Service\WebServerConfigurationFileService::class => [ static::class, 'getWebServerConfigurationFileService' ], |
70
|
|
- Service\Typo3tempFileService::class => [ static::class, 'getTypo3tempFileService' ], |
71
|
|
- Service\UpgradeWizardsService::class => [ static::class, 'getUpgradeWizardsService' ], |
72
|
|
- Middleware\Installer::class => [ static::class, 'getInstallerMiddleware' ], |
73
|
|
- Middleware\Maintenance::class => [ static::class, 'getMaintenanceMiddleware' ], |
74
|
|
- Controller\EnvironmentController::class => [ static::class, 'getEnvironmentController' ], |
75
|
|
- Controller\IconController::class => [ static::class, 'getIconController' ], |
76
|
|
- Controller\InstallerController::class => [ static::class, 'getInstallerController' ], |
77
|
|
- Controller\LayoutController::class => [ static::class, 'getLayoutController' ], |
78
|
|
- Controller\LoginController::class => [ static::class, 'getLoginController' ], |
79
|
|
- Controller\MaintenanceController::class => [ static::class, 'getMaintenanceController' ], |
80
|
|
- Controller\SettingsController::class => [ static::class, 'getSettingsController' ], |
81
|
|
- Controller\UpgradeController::class => [ static::class, 'getUpgradeController' ], |
82
|
|
- Command\LanguagePackCommand::class => [ static::class, 'getLanguagePackCommand' ], |
83
|
|
- Command\UpgradeWizardRunCommand::class => [ static::class, 'getUpgradeWizardRunCommand' ], |
84
|
|
- Command\UpgradeWizardListCommand::class => [ static::class, 'getUpgradeWizardListCommand' ], |
85
|
|
- Database\PermissionsCheck::class => [ static::class, 'getPermissionsCheck' ], |
|
58
|
+ Http\Application::class => [static::class, 'getApplication'], |
|
59
|
+ Http\NotFoundRequestHandler::class => [static::class, 'getNotFoundRequestHandler'], |
|
60
|
+ Service\ClearCacheService::class => [static::class, 'getClearCacheService'], |
|
61
|
+ Service\CoreUpdateService::class => [static::class, 'getCoreUpdateService'], |
|
62
|
+ Service\CoreVersionService::class => [static::class, 'getCoreVersionService'], |
|
63
|
+ Service\ExtensionConfigurationService::class => [static::class, 'getExtensionConfigurationService'], |
|
64
|
+ Service\LanguagePackService::class => [static::class, 'getLanguagePackService'], |
|
65
|
+ Service\LateBootService::class => [static::class, 'getLateBootService'], |
|
66
|
+ Service\LoadTcaService::class => [static::class, 'getLoadTcaService'], |
|
67
|
+ Service\SilentConfigurationUpgradeService::class => [static::class, 'getSilentConfigurationUpgradeService'], |
|
68
|
+ Service\SilentTemplateFileUpgradeService::class => [static::class, 'getSilentTemplateFileUpgradeService'], |
|
69
|
+ Service\WebServerConfigurationFileService::class => [static::class, 'getWebServerConfigurationFileService'], |
|
70
|
+ Service\Typo3tempFileService::class => [static::class, 'getTypo3tempFileService'], |
|
71
|
+ Service\UpgradeWizardsService::class => [static::class, 'getUpgradeWizardsService'], |
|
72
|
+ Middleware\Installer::class => [static::class, 'getInstallerMiddleware'], |
|
73
|
+ Middleware\Maintenance::class => [static::class, 'getMaintenanceMiddleware'], |
|
74
|
+ Controller\EnvironmentController::class => [static::class, 'getEnvironmentController'], |
|
75
|
+ Controller\IconController::class => [static::class, 'getIconController'], |
|
76
|
+ Controller\InstallerController::class => [static::class, 'getInstallerController'], |
|
77
|
+ Controller\LayoutController::class => [static::class, 'getLayoutController'], |
|
78
|
+ Controller\LoginController::class => [static::class, 'getLoginController'], |
|
79
|
+ Controller\MaintenanceController::class => [static::class, 'getMaintenanceController'], |
|
80
|
+ Controller\SettingsController::class => [static::class, 'getSettingsController'], |
|
81
|
+ Controller\UpgradeController::class => [static::class, 'getUpgradeController'], |
|
82
|
+ Command\LanguagePackCommand::class => [static::class, 'getLanguagePackCommand'], |
|
83
|
+ Command\UpgradeWizardRunCommand::class => [static::class, 'getUpgradeWizardRunCommand'], |
|
84
|
+ Command\UpgradeWizardListCommand::class => [static::class, 'getUpgradeWizardListCommand'], |
|
85
|
+ Database\PermissionsCheck::class => [static::class, 'getPermissionsCheck'], |
86
|
86
|
]; |
87
|
87
|
} |
88
|
88
|
|
89
|
89
|
public function getExtensions(): array |
90
|
90
|
{ |
91
|
91
|
return [ |
92
|
|
- 'backend.routes' => [ static::class, 'configureBackendRoutes' ], |
93
|
|
- CommandRegistry::class => [ static::class, 'configureCommands' ], |
|
92
|
+ 'backend.routes' => [static::class, 'configureBackendRoutes'], |
|
93
|
+ CommandRegistry::class => [static::class, 'configureCommands'], |
94
|
94
|
]; |
95
|
95
|
} |
96
|
96
|
|