@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Install\Service; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 | } |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Install\Updates; |
4 | 4 | |
5 | 5 | /* |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace TYPO3\CMS\Install\Updates; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Install\Updates; |
4 | 4 | |
5 | 5 | /** |
@@ -1,5 +1,5 @@ |
||
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 | /* |
@@ -1,5 +1,5 @@ discard block |
||
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 |
||
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 = [ |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | |
4 | 4 | namespace TYPO3\CMS\Install\SystemInformation; |
5 | 5 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace TYPO3\CMS\Install\Controller; |
4 | 4 | |
5 | 5 | /* |