Passed
Push — master ( fb25eb...6e5001 )
by
unknown
38:26 queued 22:19
created
typo3/sysext/backend/Classes/ServiceProvider.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,19 +48,19 @@
 block discarded – undo
48 48
     public function getFactories(): array
49 49
     {
50 50
         return [
51
-            Application::class => [ static::class, 'getApplication' ],
52
-            RequestHandler::class => [ static::class, 'getRequestHandler' ],
53
-            RouteDispatcher::class => [ static::class, 'getRouteDispatcher' ],
54
-            UriBuilder::class => [ static::class, 'getUriBuilder' ],
55
-            'backend.middlewares' => [ static::class, 'getBackendMiddlewares' ],
56
-            'backend.routes' => [ static::class, 'getBackendRoutes' ],
51
+            Application::class => [static::class, 'getApplication'],
52
+            RequestHandler::class => [static::class, 'getRequestHandler'],
53
+            RouteDispatcher::class => [static::class, 'getRouteDispatcher'],
54
+            UriBuilder::class => [static::class, 'getUriBuilder'],
55
+            'backend.middlewares' => [static::class, 'getBackendMiddlewares'],
56
+            'backend.routes' => [static::class, 'getBackendRoutes'],
57 57
         ];
58 58
     }
59 59
 
60 60
     public function getExtensions(): array
61 61
     {
62 62
         return [
63
-            Router::class => [ static::class, 'configureBackendRouter' ],
63
+            Router::class => [static::class, 'configureBackendRouter'],
64 64
         ] + parent::getExtensions();
65 65
     }
66 66
 
Please login to merge, or discard this patch.