Completed
Pull Request — master (#31958)
by Piotr
08:57
created
lib/private/Files/ObjectStore/ObjectStoreStorage.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -529,6 +529,9 @@  discard block
 block discarded – undo
529 529
 		return null;
530 530
 	}
531 531
 
532
+	/**
533
+	 * @param string $path
534
+	 */
532 535
 	private function rmObjects($path) {
533 536
 		$children = $this->getCache()->getFolderContents($path);
534 537
 		foreach ($children as $child) {
@@ -560,7 +563,7 @@  discard block
 block discarded – undo
560 563
 	/**
561 564
 	 * Clear all object stat cache entries under this path
562 565
 	 *
563
-	 * @param $path
566
+	 * @param string $path
564 567
 	 */
565 568
 	private function clearPathStat($path) {
566 569
 		$this->objectStatCache->clear($path . '/');
@@ -580,7 +583,7 @@  discard block
 block discarded – undo
580 583
 	 * not existing. Filecache for folders will not be stored in
581 584
 	 * the stat cache, and only objects are cached
582 585
 	 *
583
-	 * @param $path
586
+	 * @param string $path
584 587
 	 * @return array|false
585 588
 	 */
586 589
 	private function getPathStat($path) {
Please login to merge, or discard this patch.