Completed
Branch master (d17104)
by Christian
21:20
created
typo3/sysext/install/Classes/Http/InstallerRequestHandler.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\Http;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
sysext/install/Classes/ViewHelpers/Form/TypoScriptConstantsViewHelper.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\ViewHelpers\Form;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Command/LanguagePackCommand.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\Command;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Authentication/AuthenticationService.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\Authentication;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
Classes/ExtensionScanner/Php/Matcher/MethodArgumentDroppedStaticMatcher.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\Php\Matcher;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
sysext/install/Classes/ExtensionScanner/Php/GeneratorClassesResolver.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\Php;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
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.