Completed
Push — master ( af32df...1507bf )
by
unknown
21:00
created
typo3/sysext/extbase/Classes/Mvc/Web/RequestBuilder.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -271,7 +271,7 @@
 block discarded – undo
271 271
                 $fieldPaths[] = [$firstLevelFieldName];
272 272
             } else {
273 273
                 $newFieldPaths = $this->calculateFieldPaths($fieldInformation['error'], $firstLevelFieldName);
274
-                array_walk($newFieldPaths, function (&$value, $key) {
274
+                array_walk($newFieldPaths, function(&$value, $key) {
275 275
                     $value = explode('/', $value);
276 276
                 });
277 277
                 $fieldPaths = array_merge($fieldPaths, $newFieldPaths);
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/FormProtection/FormProtectionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@
 block discarded – undo
161 161
      */
162 162
     public static function getMessageClosure(LanguageService $languageService, FlashMessageQueue $messageQueue, $isAjaxCall)
163 163
     {
164
-        return function () use ($languageService, $messageQueue, $isAjaxCall) {
164
+        return function() use ($languageService, $messageQueue, $isAjaxCall) {
165 165
             /** @var FlashMessage $flashMessage */
166 166
             $flashMessage = GeneralUtility::makeInstance(
167 167
                 FlashMessage::class,
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Localization/Locales.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
248 248
                 break;
249 249
             }
250 250
             // Strip the country code from the end
251
-            list($preferredLanguage, ) = explode('-', $preferredLanguage);
251
+            list($preferredLanguage,) = explode('-', $preferredLanguage);
252 252
             if (isset($allLanguageCodesFromLocales[$preferredLanguage])) {
253 253
                 $selectedLanguage = $allLanguageCodesFromLocales[$preferredLanguage];
254 254
                 break;
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/EnableFileService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
      */
194 194
     protected static function getFirstInstallFilePaths()
195 195
     {
196
-        $files = array_filter(scandir(self::$sitePath), function ($file) {
196
+        $files = array_filter(scandir(self::$sitePath), function($file) {
197 197
             return @is_file(self::$sitePath . $file) && preg_match('~^' . self::FIRST_INSTALL_FILE_PATH . '.*~i', $file);
198 198
         });
199 199
         return $files;
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Database/RelationHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -475,7 +475,7 @@
 block discarded – undo
475 475
         if ($sortby === 'uid') {
476 476
             usort(
477 477
                 $this->itemArray,
478
-                function ($a, $b) {
478
+                function($a, $b) {
479 479
                     return $a['id'] < $b['id'] ? -1 : 1;
480 480
                 }
481 481
             );
Please login to merge, or discard this patch.
sysext/beuser/Classes/Domain/Repository/BackendUserSessionRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
         // Map array to correct keys
40 40
         $allSessions = array_map(
41
-            function ($session) {
41
+            function($session) {
42 42
                 return [
43 43
                     'id' => $session['ses_id'],
44 44
                     'ip' => $session['ses_iplock'],
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
         );
51 51
 
52 52
         // Sort by timestamp
53
-        usort($allSessions, function ($session1, $session2) {
53
+        usort($allSessions, function($session1, $session2) {
54 54
             return $session1['timestamp'] <=> $session2['timestamp'];
55 55
         });
56 56
 
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 
70 70
         return array_filter(
71 71
             $allActive,
72
-            function ($session) use ($backendUser) {
72
+            function($session) use ($backendUser) {
73 73
                 return (int)$session['ses_userid'] === $backendUser->getUid();
74 74
             }
75 75
         );
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Element/SelectSingleElement.php 1 patch
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -45,11 +45,11 @@  discard block
 block discarded – undo
45 45
         ],
46 46
         'otherLanguageContent' => [
47 47
             'renderType' => 'otherLanguageContent',
48
-            'after' => [ 'localizationStateSelector' ],
48
+            'after' => ['localizationStateSelector'],
49 49
         ],
50 50
         'defaultLanguageDifferences' => [
51 51
             'renderType' => 'defaultLanguageDifferences',
52
-            'after' => [ 'otherLanguageContent' ],
52
+            'after' => ['otherLanguageContent'],
53 53
         ],
54 54
     ];
55 55
 
@@ -206,29 +206,29 @@  discard block
 block discarded – undo
206 206
         if (!$disabled) {
207 207
             $html[] = $fieldInformationHtml;
208 208
         }
209
-        $html[] =   '<div class="form-control-wrap">';
210
-        $html[] =       '<div class="form-wizards-wrap">';
211
-        $html[] =           '<div class="form-wizards-element">';
209
+        $html[] = '<div class="form-control-wrap">';
210
+        $html[] = '<div class="form-wizards-wrap">';
211
+        $html[] = '<div class="form-wizards-element">';
212 212
         if ($hasIcons) {
213
-            $html[] =           '<div class="input-group">';
214
-            $html[] =               '<span class="input-group-addon input-group-icon">';
215
-            $html[] =                   $selectedIcon;
216
-            $html[] =               '</span>';
213
+            $html[] = '<div class="input-group">';
214
+            $html[] = '<span class="input-group-addon input-group-icon">';
215
+            $html[] = $selectedIcon;
216
+            $html[] = '</span>';
217 217
         }
218
-        $html[] =                   '<select ' . GeneralUtility::implodeAttributes($selectAttributes, true) . '>';
219
-        $html[] =                       $options;
220
-        $html[] =                   '</select>';
218
+        $html[] = '<select ' . GeneralUtility::implodeAttributes($selectAttributes, true) . '>';
219
+        $html[] = $options;
220
+        $html[] = '</select>';
221 221
         if ($hasIcons) {
222
-            $html[] =           '</div>';
222
+            $html[] = '</div>';
223 223
         }
224
-        $html[] =           '</div>';
224
+        $html[] = '</div>';
225 225
         if (!$disabled) {
226
-            $html[] =       '<div class="form-wizards-items-bottom">';
227
-            $html[] =           $fieldWizardHtml;
228
-            $html[] =       '</div>';
226
+            $html[] = '<div class="form-wizards-items-bottom">';
227
+            $html[] = $fieldWizardHtml;
228
+            $html[] = '</div>';
229 229
         }
230
-        $html[] =       '</div>';
231
-        $html[] =   '</div>';
230
+        $html[] = '</div>';
231
+        $html[] = '</div>';
232 232
         $html[] = '</div>';
233 233
 
234 234
         $resultArray['requireJsModules'][] = ['TYPO3/CMS/Backend/FormEngine/Element/SelectSingleElement' => implode(LF, [
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Element/NoneElement.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -69,14 +69,14 @@
 block discarded – undo
69 69
 
70 70
         $html = [];
71 71
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
72
-        $html[] =   $fieldInformationHtml;
73
-        $html[] =   '<div class="form-wizards-wrap">';
74
-        $html[] =       '<div class="form-wizards-element">';
75
-        $html[] =           '<div class="form-control-wrap" style="max-width: ' . $width . 'px">';
76
-        $html[] =               '<input class="form-control" value="' . htmlspecialchars($itemValue) . '" type="text" disabled>';
77
-        $html[] =           '</div>';
78
-        $html[] =       '</div>';
79
-        $html[] =   '</div>';
72
+        $html[] = $fieldInformationHtml;
73
+        $html[] = '<div class="form-wizards-wrap">';
74
+        $html[] = '<div class="form-wizards-element">';
75
+        $html[] = '<div class="form-control-wrap" style="max-width: ' . $width . 'px">';
76
+        $html[] = '<input class="form-control" value="' . htmlspecialchars($itemValue) . '" type="text" disabled>';
77
+        $html[] = '</div>';
78
+        $html[] = '</div>';
79
+        $html[] = '</div>';
80 80
         $html[] = '</div>';
81 81
 
82 82
         $resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/Container/FlexFormElementContainer.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -140,14 +140,14 @@
 block discarded – undo
140 140
                 $processedTitle = str_replace('\\n', '<br />', htmlspecialchars($fakeParameterArray['fieldConf']['label']));
141 141
                 $html = [];
142 142
                 $html[] = '<div class="form-section">';
143
-                $html[] =    '<div class="form-group t3js-formengine-palette-field t3js-formengine-validation-marker">';
144
-                $html[] =        '<label class="t3js-formengine-label">';
145
-                $html[] =            BackendUtility::wrapInHelp($parameterArray['_cshKey'], $flexFormFieldName, $processedTitle);
146
-                $html[] =        '</label>';
147
-                $html[] =        '<div class="formengine-field-item t3js-formengine-field-item">';
148
-                $html[] =            $childResult['html'];
149
-                $html[] =        '</div>';
150
-                $html[] =    '</div>';
143
+                $html[] = '<div class="form-group t3js-formengine-palette-field t3js-formengine-validation-marker">';
144
+                $html[] = '<label class="t3js-formengine-label">';
145
+                $html[] = BackendUtility::wrapInHelp($parameterArray['_cshKey'], $flexFormFieldName, $processedTitle);
146
+                $html[] = '</label>';
147
+                $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
148
+                $html[] = $childResult['html'];
149
+                $html[] = '</div>';
150
+                $html[] = '</div>';
151 151
                 $html[] = '</div>';
152 152
 
153 153
                 $resultArray['html'] .= implode(LF, $html);
Please login to merge, or discard this patch.