Passed
Push — master ( 5074e9...7af1bf )
by
unknown
27:54 queued 14:44
created
typo3/sysext/install/Classes/ServiceProvider.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -54,40 +54,40 @@
 block discarded – undo
54 54
     public function getFactories(): array
55 55
     {
56 56
         return [
57
-            Http\Application::class => [ static::class, 'getApplication' ],
58
-            Http\NotFoundRequestHandler::class => [ static::class, 'getNotFoundRequestHandler' ],
59
-            Service\ClearCacheService::class => [ static::class, 'getClearCacheService' ],
60
-            Service\CoreUpdateService::class => [ static::class, 'getCoreUpdateService' ],
61
-            Service\CoreVersionService::class => [ static::class, 'getCoreVersionService' ],
62
-            Service\ExtensionConfigurationService::class => [ static::class, 'getExtensionConfigurationService' ],
63
-            Service\LanguagePackService::class => [ static::class, 'getLanguagePackService' ],
64
-            Service\LateBootService::class => [ static::class, 'getLateBootService' ],
65
-            Service\LoadTcaService::class => [ static::class, 'getLoadTcaService' ],
66
-            Service\SilentConfigurationUpgradeService::class => [ static::class, 'getSilentConfigurationUpgradeService' ],
67
-            Service\Typo3tempFileService::class => [ static::class, 'getTypo3tempFileService' ],
68
-            Service\UpgradeWizardsService::class => [ static::class, 'getUpgradeWizardsService' ],
69
-            Middleware\Installer::class => [ static::class, 'getInstallerMiddleware' ],
70
-            Middleware\Maintenance::class => [ static::class, 'getMaintenanceMiddleware' ],
71
-            Controller\EnvironmentController::class => [ static::class, 'getEnvironmentController' ],
72
-            Controller\IconController::class => [ static::class, 'getIconController' ],
73
-            Controller\InstallerController::class => [ static::class, 'getInstallerController' ],
74
-            Controller\LayoutController::class => [ static::class, 'getLayoutController' ],
75
-            Controller\LoginController::class => [ static::class, 'getLoginController' ],
76
-            Controller\MaintenanceController::class => [ static::class, 'getMaintenanceController' ],
77
-            Controller\SettingsController::class => [ static::class, 'getSettingsController' ],
78
-            Controller\UpgradeController::class => [ static::class, 'getUpgradeController' ],
79
-            Command\LanguagePackCommand::class => [ static::class, 'getLanguagePackCommand' ],
80
-            Command\UpgradeWizardRunCommand::class => [ static::class, 'getUpgradeWizardRunCommand' ],
81
-            Command\UpgradeWizardListCommand::class => [ static::class, 'getUpgradeWizardListCommand' ],
82
-            Database\PermissionsCheck::class => [ static::class, 'getPermissionsCheck' ],
57
+            Http\Application::class => [static::class, 'getApplication'],
58
+            Http\NotFoundRequestHandler::class => [static::class, 'getNotFoundRequestHandler'],
59
+            Service\ClearCacheService::class => [static::class, 'getClearCacheService'],
60
+            Service\CoreUpdateService::class => [static::class, 'getCoreUpdateService'],
61
+            Service\CoreVersionService::class => [static::class, 'getCoreVersionService'],
62
+            Service\ExtensionConfigurationService::class => [static::class, 'getExtensionConfigurationService'],
63
+            Service\LanguagePackService::class => [static::class, 'getLanguagePackService'],
64
+            Service\LateBootService::class => [static::class, 'getLateBootService'],
65
+            Service\LoadTcaService::class => [static::class, 'getLoadTcaService'],
66
+            Service\SilentConfigurationUpgradeService::class => [static::class, 'getSilentConfigurationUpgradeService'],
67
+            Service\Typo3tempFileService::class => [static::class, 'getTypo3tempFileService'],
68
+            Service\UpgradeWizardsService::class => [static::class, 'getUpgradeWizardsService'],
69
+            Middleware\Installer::class => [static::class, 'getInstallerMiddleware'],
70
+            Middleware\Maintenance::class => [static::class, 'getMaintenanceMiddleware'],
71
+            Controller\EnvironmentController::class => [static::class, 'getEnvironmentController'],
72
+            Controller\IconController::class => [static::class, 'getIconController'],
73
+            Controller\InstallerController::class => [static::class, 'getInstallerController'],
74
+            Controller\LayoutController::class => [static::class, 'getLayoutController'],
75
+            Controller\LoginController::class => [static::class, 'getLoginController'],
76
+            Controller\MaintenanceController::class => [static::class, 'getMaintenanceController'],
77
+            Controller\SettingsController::class => [static::class, 'getSettingsController'],
78
+            Controller\UpgradeController::class => [static::class, 'getUpgradeController'],
79
+            Command\LanguagePackCommand::class => [static::class, 'getLanguagePackCommand'],
80
+            Command\UpgradeWizardRunCommand::class => [static::class, 'getUpgradeWizardRunCommand'],
81
+            Command\UpgradeWizardListCommand::class => [static::class, 'getUpgradeWizardListCommand'],
82
+            Database\PermissionsCheck::class => [static::class, 'getPermissionsCheck'],
83 83
         ];
84 84
     }
85 85
 
86 86
     public function getExtensions(): array
87 87
     {
88 88
         return [
89
-            'backend.routes' => [ static::class, 'configureBackendRoutes' ],
90
-            CommandRegistry::class => [ static::class, 'configureCommands' ],
89
+            'backend.routes' => [static::class, 'configureBackendRoutes'],
90
+            CommandRegistry::class => [static::class, 'configureCommands'],
91 91
         ];
92 92
     }
93 93
 
Please login to merge, or discard this patch.