Completed
Branch master (d17104)
by Christian
21:20
created
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.
typo3/sysext/install/Classes/Updates/RowUpdater/RowUpdaterInterface.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\RowUpdater;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Updates/RowUpdater/RteLinkSyntaxUpdater.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\Updates\RowUpdater;
4 4
 
5 5
 /*
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         ) {
160 160
             $result = preg_replace_callback(
161 161
                 $this->regularExpressions[$isFlexformField ? 'flex' : 'default'],
162
-                function ($matches) use ($isFlexformField) {
162
+                function($matches) use ($isFlexformField) {
163 163
                     $typoLink = $isFlexformField ? htmlspecialchars_decode($matches['typolink']) : $matches['typolink'];
164 164
                     $typoLinkParts = GeneralUtility::makeInstance(TypoLinkCodecService::class)->decode($typoLink);
165 165
                     $anchorTagAttributes = [
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/SystemInformation/Typo3VersionMessage.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\SystemInformation;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/install/Classes/Controller/SettingsController.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\Controller;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.