Passed
Push — master ( 3b2dd1...97d09d )
by
unknown
13:42
created
typo3/sysext/core/Classes/Routing/Aspect/SiteAccessorTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
         }
73 73
         return array_filter(
74 74
             $results,
75
-            function (array $result) {
75
+            function(array $result) {
76 76
                 // default FrontendRestrictionContainer retrieves only live records
77 77
                 // (no specific workspace & move-placeholder resolving required here)
78 78
                 $pageId = (int)$result['pid'];
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Routing/Aspect/SiteLanguageAccessorTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         usort(
50 50
             $results,
51 51
             // orders records by there occurrence in $languageFallbackIds
52
-            function (array $a, array $b) use ($languageFieldName, $languageIds): int {
52
+            function(array $a, array $b) use ($languageFieldName, $languageIds): int {
53 53
                 $languageA = (int)$a[$languageFieldName];
54 54
                 $languageB = (int)$b[$languageFieldName];
55 55
                 return array_search($languageA, $languageIds, true)
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Routing/PageSlugCandidateProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
             return '';
152 152
         }
153 153
         $redecorationPatterns = array_map(
154
-            function (DecoratingEnhancerInterface $decorationEnhancers) {
154
+            function(DecoratingEnhancerInterface $decorationEnhancers) {
155 155
                 $pattern = $decorationEnhancers->getRoutePathRedecorationPattern();
156 156
                 return '(?:' . $pattern . ')';
157 157
             },
Please login to merge, or discard this patch.
scheduler/Classes/Task/ExecuteSchedulableCommandAdditionalFieldProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -435,7 +435,7 @@
 block discarded – undo
435 435
             $inputTag->addAttribute('type', 'text');
436 436
             $inputTag->addAttribute('value', $currentValue);
437 437
             $inputTag->addAttribute('class', 'form-control');
438
-            $html .=  $inputTag->render();
438
+            $html .= $inputTag->render();
439 439
         }
440 440
 
441 441
         return $html;
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Controller/SiteConfigurationController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -692,7 +692,7 @@
 block discarded – undo
692 692
                 }
693 693
             }
694 694
         }
695
-        return array_filter($duplicatedEntryPoints, static function (array $variants): bool {
695
+        return array_filter($duplicatedEntryPoints, static function(array $variants): bool {
696 696
             return count($variants) > 1 || reset($variants) > 1;
697 697
         }, ARRAY_FILTER_USE_BOTH);
698 698
     }
Please login to merge, or discard this patch.
backend/Classes/Command/ProgressListener/ReferenceIndexProgressListener.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
             return;
70 70
         }
71 71
         if ($additionalMessage) {
72
-            $this->showMessageWhileInProgress(function () use ($additionalMessage) {
72
+            $this->showMessageWhileInProgress(function() use ($additionalMessage) {
73 73
                 $this->io->writeln($additionalMessage);
74 74
             });
75 75
         }
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         if (!$this->isEnabled) {
99 99
             return;
100 100
         }
101
-        $this->showMessageWhileInProgress(function () use ($message, $logLevel) {
101
+        $this->showMessageWhileInProgress(function() use ($message, $logLevel) {
102 102
             switch ($logLevel) {
103 103
                 case LogLevel::ERROR:
104 104
                     $this->io->error($message);
Please login to merge, or discard this patch.
install/Classes/ExtensionScanner/Php/Matcher/ConstructorArgumentMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
         // keeping positions having argument values that are not null
201 201
         $unusedArgumentPositions = array_filter(
202 202
             $unusedArgumentPositions,
203
-            function (int $position) use ($arguments) {
203
+            function(int $position) use ($arguments) {
204 204
                 $index = $position - 1;
205 205
                 return isset($arguments[$index]->value)
206 206
                     && !$arguments[$index]->value instanceof ConstFetch
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Element/CheckboxElement.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -142,16 +142,16 @@
 block discarded – undo
142 142
         $html = [];
143 143
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
144 144
         $html[] = $fieldInformationHtml;
145
-        $html[] =   '<div class="form-wizards-wrap">';
146
-        $html[] =       '<div class="form-wizards-element">';
147
-        $html[] =           $elementHtml;
148
-        $html[] =       '</div>';
145
+        $html[] = '<div class="form-wizards-wrap">';
146
+        $html[] = '<div class="form-wizards-element">';
147
+        $html[] = $elementHtml;
148
+        $html[] = '</div>';
149 149
         if (!$disabled && !empty($fieldWizardHtml)) {
150
-            $html[] =   '<div class="form-wizards-items-bottom">';
151
-            $html[] =       $fieldWizardHtml;
152
-            $html[] =   '</div>';
150
+            $html[] = '<div class="form-wizards-items-bottom">';
151
+            $html[] = $fieldWizardHtml;
152
+            $html[] = '</div>';
153 153
         }
154
-        $html[] =   '</div>';
154
+        $html[] = '</div>';
155 155
         $html[] = '</div>';
156 156
 
157 157
         $resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Element/CheckboxLabeledToggleElement.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -142,16 +142,16 @@
 block discarded – undo
142 142
         $html = [];
143 143
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
144 144
         $html[] = $fieldInformationHtml;
145
-        $html[] =   '<div class="form-wizards-wrap">';
146
-        $html[] =       '<div class="form-wizards-element">';
147
-        $html[] =           $elementHtml;
148
-        $html[] =       '</div>';
145
+        $html[] = '<div class="form-wizards-wrap">';
146
+        $html[] = '<div class="form-wizards-element">';
147
+        $html[] = $elementHtml;
148
+        $html[] = '</div>';
149 149
         if (!$disabled && !empty($fieldWizardHtml)) {
150
-            $html[] =   '<div class="form-wizards-items-bottom">';
151
-            $html[] =       $fieldWizardHtml;
152
-            $html[] =   '</div>';
150
+            $html[] = '<div class="form-wizards-items-bottom">';
151
+            $html[] = $fieldWizardHtml;
152
+            $html[] = '</div>';
153 153
         }
154
-        $html[] =   '</div>';
154
+        $html[] = '</div>';
155 155
         $html[] = '</div>';
156 156
 
157 157
         $resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.