Completed
Branch master (b5e024)
by Christian
18:16
created
typo3/sysext/install/Classes/ExtensionScanner/CodeScannerInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\ExtensionScanner;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/UpgradeAnalysis/DocumentationFile.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Install\UpgradeAnalysis;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/LanguagePackService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\Service;
4 4
 
5 5
 /*
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                 'dependencies' => $this->locales->getLocaleDependencies($iso),
92 92
             ];
93 93
         }
94
-        usort($languages, function ($a, $b) {
94
+        usort($languages, function($a, $b) {
95 95
             // Sort languages by name
96 96
             if ($a['name'] === $b['name']) {
97 97
                 return 0;
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
             }
153 153
             $extensions[] = $extension;
154 154
         }
155
-        usort($extensions, function ($a, $b) {
155
+        usort($extensions, function($a, $b) {
156 156
             // Sort extensions by key
157 157
             if ($a['key'] === $b['key']) {
158 158
                 return 0;
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/Exception/RemoteFetchException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\Service\Exception;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/ClearTableService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\Service;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Service/ExtensionConfigurationService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\Service;
4 4
 
5 5
 /*
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
             // Sort configurations of each subcategory
109 109
             foreach ($hierarchicConfiguration as &$catConfigurationArray) {
110 110
                 foreach ($catConfigurationArray as &$subcatConfigurationArray) {
111
-                    uasort($subcatConfigurationArray, function ($a, $b) {
111
+                    uasort($subcatConfigurationArray, function($a, $b) {
112 112
                         return strnatcmp($a['subcat'], $b['subcat']);
113 113
                     });
114 114
                 }
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Updates/RedirectsExtensionUpdate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\Updates;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Updates/AdminPanelInstall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 
4 4
 namespace TYPO3\CMS\Install\Updates;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Updates/BackendLayoutIconUpdateWizard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 namespace TYPO3\CMS\Install\Updates;
4 4
 
5 5
 /**
Please login to merge, or discard this patch.