Completed
Push — master ( e176d6...f9122f )
by
unknown
27:07 queued 09:58
created
typo3/sysext/extbase/Classes/Configuration/BackendConfigurationManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@
 block discarded – undo
266 266
             $startPid = abs($startPid);
267 267
             $recursiveStoragePids = array_merge(
268 268
                 $recursiveStoragePids,
269
-                [ $startPid ],
269
+                [$startPid],
270 270
                 $this->getPageChildrenRecursive($startPid, $recursionDepth, 0, $permsClause)
271 271
             );
272 272
         }
Please login to merge, or discard this patch.
typo3/sysext/workspaces/Classes/Service/WorkspaceService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -527,7 +527,7 @@  discard block
 block discarded – undo
527 527
         );
528 528
         if ($pageId > 0) {
529 529
             $pageList = array_merge(
530
-                [ (int)$pageId ],
530
+                [(int)$pageId],
531 531
                 $this->getPageChildrenRecursive((int)$pageId, (int)$recursionLevel, 0, $permsClause)
532 532
             );
533 533
         } else {
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
             foreach ($mountPoints as $mountPoint) {
541 541
                 $pageList = array_merge(
542 542
                     $pageList
543
-                    [ (int)$mountPoint ],
543
+                    [(int)$mountPoint],
544 544
                     $this->getPageChildrenRecursive((int)$mountPoint, (int)$recursionLevel, 0, $permsClause)
545 545
                 );
546 546
             }
Please login to merge, or discard this patch.