Completed
Pull Request — master (#29214)
by Sujith
20:14 queued 10:31
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.
apps/dav/lib/MetaData/MetaDataNode.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@
 block discarded – undo
23 23
 namespace OCA\DAV\MetaData;
24 24
 
25 25
 
26
-use OCP\IMetaData;
27 26
 use Sabre\DAV\File;
28 27
 
29 28
 class MetaDataNode extends File {
Please login to merge, or discard this patch.
apps/dav/lib/MetaData/MetaDataHome.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -23,12 +23,10 @@
 block discarded – undo
23 23
 namespace OCA\DAV\MetaData;
24 24
 
25 25
 
26
-use OCP\IMetaData;
27 26
 use Sabre\DAV\Exception\Forbidden;
28 27
 use Sabre\DAV\Exception\MethodNotAllowed;
29 28
 use Sabre\DAV\Exception\NotFound;
30 29
 use Sabre\DAV\ICollection;
31
-use Sabre\HTTP\URLUtil;
32 30
 
33 31
 class MetaDataHome implements ICollection {
34 32
 
Please login to merge, or discard this patch.