Completed
Push — master ( e6a09e...0269b0 )
by
unknown
17:35
created
typo3/sysext/dashboard/Classes/ServiceProvider.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -45,20 +45,20 @@
 block discarded – undo
45 45
     public function getFactories(): array
46 46
     {
47 47
         return [
48
-            'dashboard.presets' => [ static::class, 'getDashboardPresets' ],
49
-            'dashboard.widgetGroups' => [ static::class, 'getWidgetGroups' ],
50
-            'dashboard.widgets' => [ static::class, 'getWidgets' ],
48
+            'dashboard.presets' => [static::class, 'getDashboardPresets'],
49
+            'dashboard.widgetGroups' => [static::class, 'getWidgetGroups'],
50
+            'dashboard.widgets' => [static::class, 'getWidgets'],
51 51
         ];
52 52
     }
53 53
 
54 54
     public function getExtensions(): array
55 55
     {
56 56
         return [
57
-            DashboardPresetRegistry::class => [ static::class, 'configureDashboardPresetRegistry' ],
58
-            WidgetGroupRegistry::class => [ static::class, 'configureWidgetGroupRegistry' ],
59
-            'dashboard.presets' => [ static::class, 'configureDashboardPresets' ],
60
-            'dashboard.widgetGroups' => [ static::class, 'configureWidgetGroups' ],
61
-            'dashboard.widgets' => [ static::class, 'configureWidgets' ]
57
+            DashboardPresetRegistry::class => [static::class, 'configureDashboardPresetRegistry'],
58
+            WidgetGroupRegistry::class => [static::class, 'configureWidgetGroupRegistry'],
59
+            'dashboard.presets' => [static::class, 'configureDashboardPresets'],
60
+            'dashboard.widgetGroups' => [static::class, 'configureWidgetGroups'],
61
+            'dashboard.widgets' => [static::class, 'configureWidgets']
62 62
         ] + parent::getExtensions();
63 63
     }
64 64
 
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/Form/FieldWizard/OtherLanguageThumbnails.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
             try {
74 74
                 $file = GeneralUtility::makeInstance(ResourceFactory::class)->getFileObject($fileUid);
75
-            } catch (FileDoesNotExistException|\InvalidArgumentException $e) {
75
+            } catch (FileDoesNotExistException | \InvalidArgumentException $e) {
76 76
                 continue;
77 77
             }
78 78
 
@@ -99,8 +99,8 @@  discard block
 block discarded – undo
99 99
             if ($processedImages !== []) {
100 100
                 $iconIdentifier = $this->data['systemLanguageRows'][(int)$sysLanguageUid]['flagIconIdentifier'] ?? 'flags-multiple';
101 101
                 $html[] = '<div class="t3-form-original-language">';
102
-                $html[] =   $iconFactory->getIcon($iconIdentifier, Icon::SIZE_SMALL)->render();
103
-                $html[] =   implode(LF, $processedImages);
102
+                $html[] = $iconFactory->getIcon($iconIdentifier, Icon::SIZE_SMALL)->render();
103
+                $html[] = implode(LF, $processedImages);
104 104
                 $html[] = '</div>';
105 105
             }
106 106
         }
Please login to merge, or discard this patch.
typo3/sysext/core/Classes/Charset/CharsetConverter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -518,7 +518,7 @@
 block discarded – undo
518 518
         while (!feof($fh)) {
519 519
             $line = (string)fgets($fh, 4096);
520 520
             // Has a lot of info
521
-            [$char, $name, $cat, , , $decomp, , , $num] = explode(';', rtrim($line));
521
+            [$char, $name, $cat,,, $decomp,,, $num] = explode(';', rtrim($line));
522 522
             $ord = hexdec($char);
523 523
             if ($ord > 65535) {
524 524
                 // Only process the BMP
Please login to merge, or discard this patch.