Completed
Push — master ( f66149...a7372c )
by
unknown
130:24 queued 111:56
created
typo3/sysext/backend/Classes/View/BackendLayout/Grid/LanguageColumn.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\Backend\View\BackendLayout\Grid;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/Grid/Grid.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\Backend\View\BackendLayout\Grid;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/Grid/GridColumn.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\Backend\View\BackendLayout\Grid;
4 4
 
5 5
 /*
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/Grid/AbstractGridObject.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\Backend\View\BackendLayout\Grid;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/Grid/GridRow.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\Backend\View\BackendLayout\Grid;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/Grid/GridColumnItem.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
 
4 4
 namespace TYPO3\CMS\Backend\View\BackendLayout\Grid;
5 5
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
                 default:
153 153
                     $contentType = $this->backendLayout->getDrawingConfiguration()->getContentTypeLabels()[$row['CType']];
154 154
                     if (!isset($contentType)) {
155
-                        $contentType =  BackendUtility::getLabelFromItemListMerged($row['pid'], 'tt_content', 'CType', $row['CType']);
155
+                        $contentType = BackendUtility::getLabelFromItemListMerged($row['pid'], 'tt_content', 'CType', $row['CType']);
156 156
                     }
157 157
 
158 158
                     if ($contentType) {
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/RecordRememberer.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\Backend\View\BackendLayout;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/ContentFetcher.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\Backend\View\BackendLayout;
5 5
 
Please login to merge, or discard this patch.
typo3/sysext/backend/Classes/View/BackendLayout/BackendLayout.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -229,9 +229,9 @@
 block discarded – undo
229 229
                         $column['icon']
230 230
                     ];
231 231
                     $colCount += $column['colspan'] ? $column['colspan'] : 1;
232
-                    ++ $index;
232
+                    ++$index;
233 233
                 }
234
-                ++ $rowIndex;
234
+                ++$rowIndex;
235 235
             }
236 236
 
237 237
             $configurationArray['__config'] = $configurationArray;
Please login to merge, or discard this patch.