Completed
Push — master ( bb1840...c9971e )
by
unknown
16:06
created
typo3/sysext/recordlist/Classes/RecordList/DatabaseRecordList.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      * @internal
184 184
      * @var array
185 185
      */
186
-    protected $moduleData =  [];
186
+    protected $moduleData = [];
187 187
 
188 188
     /**
189 189
      * Page id
@@ -1011,7 +1011,7 @@  discard block
 block discarded – undo
1011 1011
                     if ($totalItems > $itemsLimitPerTable) {
1012 1012
                         $countOnFirstPage = $totalItems > $itemsLimitSingleTable ? $itemsLimitSingleTable : $totalItems;
1013 1013
                         $hasMore = $totalItems > $itemsLimitSingleTable;
1014
-                        $colspan =  (count($this->fieldArray) + 1);
1014
+                        $colspan = (count($this->fieldArray) + 1);
1015 1015
                         $rowOutput .= '<tr><td colspan="' . $colspan . '">
1016 1016
 								<a href="' . htmlspecialchars($this->listURL() . '&table=' . rawurlencode($tableIdentifier)) . '" class="btn btn-default">'
1017 1017
                             . '<span class="t3-icon fa fa-chevron-down"></span> <i>[1 - ' . $countOnFirstPage . ($hasMore ? '+' : '') . ']</i></a>
@@ -1263,7 +1263,7 @@  discard block
 block discarded – undo
1263 1263
         }
1264 1264
 
1265 1265
         $tagAttributes = array_map(
1266
-            function ($attributeValue) {
1266
+            function($attributeValue) {
1267 1267
                 if (is_array($attributeValue)) {
1268 1268
                     return implode(' ', $attributeValue);
1269 1269
                 }
@@ -1841,7 +1841,7 @@  discard block
 block discarded – undo
1841 1841
                         $params = [
1842 1842
                             'edit' => [
1843 1843
                                 $table => [
1844
-                                    (0-($row['_MOVE_PLH'] ? $row['_MOVE_PLH_uid'] : $row['uid'])) => 'new'
1844
+                                    (0 - ($row['_MOVE_PLH'] ? $row['_MOVE_PLH_uid'] : $row['uid'])) => 'new'
1845 1845
                                 ]
1846 1846
                             ],
1847 1847
                             'returnUrl' => $this->listURL()
@@ -2277,7 +2277,7 @@  discard block
 block discarded – undo
2277 2277
     {
2278 2278
         $lang = $this->getLanguageService();
2279 2279
         // Load already selected fields, if any:
2280
-        $setFields = (array)($this->setFields[$table]?? []);
2280
+        $setFields = (array)($this->setFields[$table] ?? []);
2281 2281
         // Request fields from table:
2282 2282
         $fields = $this->makeFieldList($table, false, true);
2283 2283
         // Add pseudo "control" fields
Please login to merge, or discard this patch.