Passed
Push — master ( 8e4875...07bfbc )
by
unknown
12:19
created
typo3/sysext/install/Classes/Service/WebServerConfigurationFileService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@
 block discarded – undo
181 181
     ): string {
182 182
         return preg_replace_callback(
183 183
             $pattern,
184
-            static function ($matches) use ($newRewriteRule) {
184
+            static function($matches) use ($newRewriteRule) {
185 185
                 return str_replace($matches[2], '', ($matches[1] . $newRewriteRule)) . $matches[3];
186 186
             },
187 187
             $configurationFileContent,
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/ServiceProvider.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -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
 
Please login to merge, or discard this patch.