@@ -266,7 +266,7 @@ |
||
| 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 | } |
@@ -527,7 +527,7 @@ discard block |
||
| 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 |
||
| 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 | } |