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