Completed
Pull Request — master (#29214)
by Sujith
09:00
created
lib/private/Files/Node/Root.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 	 * @param string $path
175 175
 	 * @throws \OCP\Files\NotFoundException
176 176
 	 * @throws \OCP\Files\NotPermittedException
177
-	 * @return string
177
+	 * @return \OCP\Files\Node
178 178
 	 */
179 179
 	public function get($path) {
180 180
 		$path = $this->normalizePath($path);
@@ -371,6 +371,9 @@  discard block
 block discarded – undo
371 371
 
372 372
 	}
373 373
 
374
+	/**
375
+	 * @param string $fullPath
376
+	 */
374 377
 	private function resolveVirtualNode($fullPath) {
375 378
 		$pieces = explode('/', $fullPath);
376 379
 		if ($pieces[1] !== 'meta') {
Please login to merge, or discard this patch.
lib/private/Files/Storage/Common.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -721,7 +721,7 @@
 block discarded – undo
721 721
 	}
722 722
 
723 723
 	/**
724
-	 * @param $internalPath
724
+	 * @param string $internalPath
725 725
 	 * @return array|string
726 726
 	 */
727 727
 	private function convertInternalPathToGlobalPath($internalPath) {
Please login to merge, or discard this patch.
apps/dav/lib/MetaData/MetaDataHome.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -55,6 +55,10 @@
 block discarded – undo
55 55
 		//return new MetaDataNode($metaDataNode->getMetaVersionFolder(), \OC::$server->getRootFolder());
56 56
 	}
57 57
 
58
+	/**
59
+	 * @param MetaDataNode $metaDataNode
60
+	 * @param MetaVersionCollection $metaVersion
61
+	 */
58 62
 	function impl($metaDataNode, $metaVersion) {
59 63
 		$view = new View();
60 64
 		$path = $view->getPath($metaDataNode->getMetaVersionFolder()->getID());
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 use OC\Files\Meta\MetaVersionCollection;
27 27
 use OC\Files\View;
28 28
 use OCA\DAV\Connector\Sabre\Directory;
29
-use OCP\IMetaData;
30 29
 use Sabre\DAV\Exception\Forbidden;
31 30
 use Sabre\DAV\Exception\MethodNotAllowed;
32 31
 use Sabre\DAV\Exception\NotFound;
Please login to merge, or discard this patch.