Passed
Push — master ( d82bc6...48fd54 )
by
unknown
22:12
created
typo3/sysext/indexed_search/Classes/Controller/SearchController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -700,9 +700,9 @@
 block discarded – undo
700 700
                         $iconPath = PathUtility::stripPathSitePrefix($fullPath);
701 701
                         $this->iconFileNameCache[$imageType] = $imageInfo->getWidth()
702 702
                             ? '<img src="' . $iconPath
703
-                              . '" width="' . $imageInfo->getWidth()
704
-                              . '" height="' . $imageInfo->getHeight()
705
-                              . '" title="' . htmlspecialchars($alt) . '" alt="" />'
703
+                                . '" width="' . $imageInfo->getWidth()
704
+                                . '" height="' . $imageInfo->getHeight()
705
+                                . '" title="' . htmlspecialchars($alt) . '" alt="" />'
706 706
                             : '';
707 707
                     }
708 708
                 }
Please login to merge, or discard this patch.
typo3/sysext/adminpanel/Classes/Service/ConfigurationService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
                     ($module instanceof ConfigurableInterface && $module->isEnabled())
126 126
                     || !($module instanceof ConfigurableInterface)
127 127
                 )
128
-             ) {
128
+                ) {
129 129
                 $module->onSubmit($configurationToSave, $request);
130 130
             }
131 131
             if ($module instanceof SubmoduleProviderInterface) {
Please login to merge, or discard this patch.
typo3/sysext/adminpanel/Classes/Controller/AjaxController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@
 block discarded – undo
52 52
     public function __construct(ConfigurationService $configurationService = null, ModuleLoader $moduleLoader = null)
53 53
     {
54 54
         $this->configurationService = $configurationService
55
-                                      ??
56
-                                      GeneralUtility::makeInstance(ConfigurationService::class);
55
+                                        ??
56
+                                        GeneralUtility::makeInstance(ConfigurationService::class);
57 57
         $this->adminPanelModuleConfiguration = $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules'] ?? [];
58 58
         $this->moduleLoader = $moduleLoader ?? GeneralUtility::makeInstance(ModuleLoader::class);
59 59
     }
Please login to merge, or discard this patch.
typo3/sysext/adminpanel/Classes/Controller/MainController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,8 +81,8 @@
 block discarded – undo
81 81
         $this->moduleLoader = $moduleLoader ?? GeneralUtility::makeInstance(ModuleLoader::class);
82 82
         $this->uriBuilder = $uriBuilder ?? GeneralUtility::makeInstance(UriBuilder::class);
83 83
         $this->configurationService = $configurationService
84
-                                      ??
85
-                                      GeneralUtility::makeInstance(ConfigurationService::class);
84
+                                        ??
85
+                                        GeneralUtility::makeInstance(ConfigurationService::class);
86 86
         $this->adminPanelModuleConfiguration = $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['adminpanel']['modules'] ?? [];
87 87
     }
88 88
 
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Hooks/FormFileExtensionUpdate.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
     public function getDescription(): string
107 107
     {
108 108
         return 'Form definition files need to be named *.form.yaml to have a way of distinguishing form yaml ' .
109
-               'configuration files from other yaml configuration files. This wizard will analyze and rename found files.';
109
+                'configuration files from other yaml configuration files. This wizard will analyze and rename found files.';
110 110
     }
111 111
 
112 112
     /**
@@ -187,8 +187,8 @@  discard block
 block discarded – undo
187 187
                 } else {
188 188
                     $this->output->writeln(
189 189
                         '<warning>There are references to form definitions which are located in extensions and thus cannot be renamed automatically by this wizard.'
190
-                      . 'This form definitions from extensions that do not end with .form.yaml have to be renamed by hand!'
191
-                      . 'After that you can run this wizard again to migrate the references.</warning>'
190
+                        . 'This form definitions from extensions that do not end with .form.yaml have to be renamed by hand!'
191
+                        . 'After that you can run this wizard again to migrate the references.</warning>'
192 192
                     );
193 193
                 }
194 194
             }
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
                 $success = false;
346 346
                 $this->output->writeln(sprintf(
347 347
                     '<error>Failed to rename form definition "%s" to "%s". You have to be rename it by hand!. '
348
-                  . 'After that you can run this wizard again to migrate the references.</error>',
348
+                    . 'After that you can run this wizard again to migrate the references.</error>',
349 349
                     $formDefinitionInformation['persistenceIdentifier'],
350 350
                     $this->getNewPersistenceIdentifier($formDefinitionInformation['persistenceIdentifier'])
351 351
                 ));
Please login to merge, or discard this patch.
Classes/ExpressionLanguage/FunctionsProvider/DefaultFunctionsProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
             },
68 68
             function ($arguments, $str) {
69 69
                 return VersionNumberUtility::convertVersionNumberToInteger(TYPO3_branch) >=
70
-                   VersionNumberUtility::convertVersionNumberToInteger($str);
70
+                    VersionNumberUtility::convertVersionNumberToInteger($str);
71 71
             }
72 72
         );
73 73
     }
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/TypoScript/Parser/ConstantConfigurationParser.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@
 block discarded – undo
259 259
                                     $editableComments[$const]['subcat_name'] = $catSplit[1];
260 260
                                     $orderIdentifier = isset($catSplit[2]) ? trim($catSplit[2]) : $counter;
261 261
                                     $editableComments[$const]['subcat'] = $this->subCategories[$catSplit[1]][1]
262
-                                                                          . '/' . $catSplit[1] . '/' . $orderIdentifier . 'z';
262
+                                                                            . '/' . $catSplit[1] . '/' . $orderIdentifier . 'z';
263 263
                                 } elseif (isset($catSplit[2])) {
264 264
                                     $editableComments[$const]['subcat'] = 'x/' . trim($catSplit[2]) . 'z';
265 265
                                 } else {
Please login to merge, or discard this patch.
typo3/sysext/viewpage/Classes/Controller/ViewModuleController.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,6 @@
 block discarded – undo
88 88
 
89 89
     /**
90 90
      * Register the doc header
91
-
92 91
      * @param int $pageId
93 92
      * @param int $languageId
94 93
      * @param string $targetUrl
Please login to merge, or discard this patch.
typo3/sysext/form/Classes/Domain/Finishers/EmailFinisher.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -243,8 +243,8 @@
 block discarded – undo
243 243
 
244 244
         $standaloneView->assign('form', $formRuntime);
245 245
         $standaloneView->getRenderingContext()
246
-                       ->getViewHelperVariableContainer()
247
-                       ->addOrUpdate(RenderRenderableViewHelper::class, 'formRuntime', $formRuntime);
246
+                        ->getViewHelperVariableContainer()
247
+                        ->addOrUpdate(RenderRenderableViewHelper::class, 'formRuntime', $formRuntime);
248 248
 
249 249
         return $standaloneView;
250 250
     }
Please login to merge, or discard this patch.