Completed
Pull Request — master (#23919)
by Roeland
08:49
created
apps/files_sharing/lib/mountprovider.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,6 @@
 block discarded – undo
43 43
 
44 44
 	/**
45 45
 	 * @param \OCP\IConfig $config
46
-	 * @param IManager $shareProvider
47 46
 	 */
48 47
 	public function __construct(IConfig $config, IManager $shareManager) {
49 48
 		$this->config = $config;
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -22,8 +22,6 @@
 block discarded – undo
22 22
 
23 23
 namespace OCA\Files_Sharing;
24 24
 
25
-use OC\Files\Filesystem;
26
-use OC\User\NoUserException;
27 25
 use OCP\Files\Config\IMountProvider;
28 26
 use OCP\Files\Storage\IStorageFactory;
29 27
 use OCP\IConfig;
Please login to merge, or discard this patch.
apps/files_sharing/lib/sharedstorage.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -262,6 +262,9 @@  discard block
 block discarded – undo
262 262
 		return $this->newShare->getTarget();
263 263
 	}
264 264
 
265
+	/**
266
+	 * @param string $path
267
+	 */
265 268
 	public function setMountPoint($path) {
266 269
 		$this->newShare->setTarget($path);
267 270
 	}
@@ -273,7 +276,7 @@  discard block
 block discarded – undo
273 276
 	/**
274 277
 	 * get share ID
275 278
 	 *
276
-	 * @return integer unique share ID
279
+	 * @return string unique share ID
277 280
 	 */
278 281
 	public function getShareId() {
279 282
 		return $this->newShare->getId();
Please login to merge, or discard this patch.