Completed
Branch master (b5e024)
by Christian
18:16
created
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.
typo3/sysext/impexp/Classes/ContextMenu/ItemProvider.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\Impexp\ContextMenu;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/beuser/Classes/ContextMenu/ItemProvider.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\Beuser\ContextMenu;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/t3editor/Classes/Registry/ModeRegistry.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\T3editor\Registry;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/t3editor/Classes/T3editor.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\T3editor;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/t3editor/Classes/Exception/InvalidModeException.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\T3editor\Exception;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/t3editor/Classes/Form/Element/T3editorElement.php 1 patch
Spacing   +17 added lines, -17 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\T3editor\Form\Element;
4 4
 
5 5
 /*
@@ -142,22 +142,22 @@  discard block
 block discarded – undo
142 142
 
143 143
         $html = [];
144 144
         $html[] = '<div class="formengine-field-item t3js-formengine-field-item">';
145
-        $html[] =   $fieldInformationHtml;
146
-        $html[] =   '<div class="form-control-wrap">';
147
-        $html[] =       '<div class="form-wizards-wrap">';
148
-        $html[] =           '<div class="form-wizards-element">';
149
-        $html[] =               $editorHtml;
150
-        $html[] =           '</div>';
151
-        $html[] =           '<div class="form-wizards-items-aside">';
152
-        $html[] =               '<div class="btn-group">';
153
-        $html[] =                   $fieldControlHtml;
154
-        $html[] =               '</div>';
155
-        $html[] =           '</div>';
156
-        $html[] =           '<div class="form-wizards-items-bottom">';
157
-        $html[] =               $fieldWizardHtml;
158
-        $html[] =           '</div>';
159
-        $html[] =       '</div>';
160
-        $html[] =   '</div>';
145
+        $html[] = $fieldInformationHtml;
146
+        $html[] = '<div class="form-control-wrap">';
147
+        $html[] = '<div class="form-wizards-wrap">';
148
+        $html[] = '<div class="form-wizards-element">';
149
+        $html[] = $editorHtml;
150
+        $html[] = '</div>';
151
+        $html[] = '<div class="form-wizards-items-aside">';
152
+        $html[] = '<div class="btn-group">';
153
+        $html[] = $fieldControlHtml;
154
+        $html[] = '</div>';
155
+        $html[] = '</div>';
156
+        $html[] = '<div class="form-wizards-items-bottom">';
157
+        $html[] = $fieldWizardHtml;
158
+        $html[] = '</div>';
159
+        $html[] = '</div>';
160
+        $html[] = '</div>';
161 161
         $html[] = '</div>';
162 162
 
163 163
         $this->resultArray['html'] = implode(LF, $html);
Please login to merge, or discard this patch.