Passed
Push — master ( d5a28b...d12ca0 )
by
unknown
17:01
created
typo3/sysext/setup/Classes/Controller/SetupModuleController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -666,8 +666,8 @@
 block discarded – undo
666 666
                         break;
667 667
                     }
668 668
                     $html .= '<a href="' . htmlspecialchars((string)$uriBuilder->buildUriFromRoute('mfa')) . '" class="btn btn-' . ($hasActiveProviders ? 'default' : 'success') . '">';
669
-                    $html .=    $this->iconFactory->getIcon($hasActiveProviders ? 'actions-cog' : 'actions-add', Icon::SIZE_SMALL);
670
-                    $html .=    ' <span>' . htmlspecialchars($lang->getLL('mfaProviders.' . ($hasActiveProviders ? 'manageLinkTitle' : 'setupLinkTitle'))) . '</span>';
669
+                    $html .= $this->iconFactory->getIcon($hasActiveProviders ? 'actions-cog' : 'actions-add', Icon::SIZE_SMALL);
670
+                    $html .= ' <span>' . htmlspecialchars($lang->getLL('mfaProviders.' . ($hasActiveProviders ? 'manageLinkTitle' : 'setupLinkTitle'))) . '</span>';
671 671
                     $html .= '</a>';
672 672
                     break;
673 673
                 default:
Please login to merge, or discard this patch.
typo3/sysext/lowlevel/Classes/ServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,8 +38,8 @@
 block discarded – undo
38 38
     public function getFactories(): array
39 39
     {
40 40
         return [
41
-            Controller\ConfigurationController::class => [ static::class, 'getConfigurationController' ],
42
-            Controller\DatabaseIntegrityController::class => [ static::class, 'getDatabaseIntegrityController' ],
41
+            Controller\ConfigurationController::class => [static::class, 'getConfigurationController'],
42
+            Controller\DatabaseIntegrityController::class => [static::class, 'getDatabaseIntegrityController'],
43 43
         ];
44 44
     }
45 45
 
Please login to merge, or discard this patch.