Completed
Pull Request — master (#1117)
by
unknown
52s
created
lib/Db/ShareWrapperRequest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
 			if ($shallow) {
384 384
 				$qb->limitInt('parent', $node->getId(), $aliasFileCache);
385 385
 			} else {
386
-				$qb->like('path', $node->getInternalPath() . '/%', $aliasFileCache);
386
+				$qb->like('path', $node->getInternalPath().'/%', $aliasFileCache);
387 387
 			}
388 388
 		}
389 389
 		$qb->limitNull('parent', false);
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
 		}
445 445
 
446 446
 		$ids = array_map(
447
-			function (ShareWrapper $share): string {
447
+			function(ShareWrapper $share): string {
448 448
 				return $share->getId();
449 449
 			},
450 450
 			$this->getItemsFromRequest($qb)
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
 		$expr = $qb->expr();
460 460
 		$qb->leftJoin(
461 461
 			CoreQueryBuilder::SHARE, CoreRequestBuilder::TABLE_SHARE, 'p',
462
-			$expr->andX($expr->eq('p.id', CoreQueryBuilder::SHARE . '.parent'))
462
+			$expr->andX($expr->eq('p.id', CoreQueryBuilder::SHARE.'.parent'))
463 463
 		);
464 464
 
465 465
 		$qb->filterNull('parent');
Please login to merge, or discard this patch.