Completed
Push — master ( ddbb7f...3c9a6b )
by Tim
32s
created
Classes/Service/IndexerService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -138,11 +138,11 @@
 block discarded – undo
138 138
         $record = BackendUtility::getRecord($tableName, $uid);
139 139
         if (0 === (int)($record['t3ver_oid'] ?? 0)) {
140 140
             $versions = (array)BackendUtility::selectVersionsOfRecord($tableName, $uid, 'uid', null);
141
-            $ids = array_map(function ($row) {
141
+            $ids = array_map(function($row) {
142 142
                 return (int)$row['uid'];
143 143
             }, $versions);
144 144
 
145
-            $ids = array_filter($ids, function ($id) use ($uid) {
145
+            $ids = array_filter($ids, function($id) use ($uid) {
146 146
                 return $id !== $uid;
147 147
             });
148 148
 
Please login to merge, or discard this patch.