Completed
Pull Request — master (#32261)
by Matthew
16:06 queued 03:51
created
apps/files_sharing/lib/Hooks.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,6 @@
 block discarded – undo
33 33
 use OCP\Share\IShare;
34 34
 use Symfony\Component\EventDispatcher\GenericEvent;
35 35
 use OCA\Files_Sharing\Service\NotificationPublisher;
36
-use OCP\Share\Exceptions\ShareNotFound;
37 36
 
38 37
 class Hooks {
39 38
 	/**
Please login to merge, or discard this patch.
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -138,6 +138,10 @@
 block discarded – undo
138 138
 		);
139 139
 	}
140 140
 
141
+	/**
142
+	 * @param IShare[] $shares
143
+	 * @param string $fileId
144
+	 */
141 145
 	private function filterSharesByFileId($shares, $fileId) {
142 146
 		return \array_filter($shares, function (IShare $share) use ($fileId) {
143 147
 			return \strval($share->getNodeId()) === \strval($fileId);
Please login to merge, or discard this patch.
core/Command/User/SyncBackend.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@
 block discarded – undo
310 310
 	 * @param string[] $removedUsers
311 311
 	 * @param InputInterface $input
312 312
 	 * @param OutputInterface $output
313
-	 * @param $missingAccountsAction
313
+	 * @param string $missingAccountsAction
314 314
 	 */
315 315
 	private function handleRemovedUsers(array $removedUsers, InputInterface $input, OutputInterface $output, $missingAccountsAction) {
316 316
 		if (empty($removedUsers)) {
Please login to merge, or discard this patch.
lib/private/Files/External/Service/GlobalStoragesService.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,6 @@
 block discarded – undo
26 26
 namespace OC\Files\External\Service;
27 27
 
28 28
 use OC\Files\Filesystem;
29
-
30 29
 use OCP\Files\External\IStorageConfig;
31 30
 use OCP\Files\External\IStoragesBackendService;
32 31
 use OCP\Files\External\Service\IGlobalStoragesService;
Please login to merge, or discard this patch.
apps/files_sharing/lib/API/Share20OCS.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
 	/**
512 512
 	 * @param \OCP\Files\File|\OCP\Files\Folder $node
513 513
 	 * @param boolean $includeTags include tags in response
514
-	 * @param int|null $stateFilter state filter or empty for all, defaults to 0 (accepted)
514
+	 * @param integer $stateFilter state filter or empty for all, defaults to 0 (accepted)
515 515
 	 * @return \OC\OCS\Result
516 516
 	 */
517 517
 	private function getSharedWithMe($node = null, $includeTags, $stateFilter = 0) {
@@ -870,7 +870,7 @@  discard block
 block discarded – undo
870 870
 	}
871 871
 
872 872
 	/**
873
-	 * @param $id
873
+	 * @param integer $id
874 874
 	 * @param $state
875 875
 	 * @return \OC\OCS\Result
876 876
 	 */
@@ -1041,6 +1041,7 @@  discard block
 block discarded – undo
1041 1041
 	 * not support this we need to check all backends.
1042 1042
 	 *
1043 1043
 	 * @param string $id
1044
+	 * @param string $recipient
1044 1045
 	 * @return \OCP\Share\IShare
1045 1046
 	 * @throws ShareNotFound
1046 1047
 	 */
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/AutorenamePlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
 	/**
60 60
 	 * @param RequestInterface $request
61 61
 	 * @param ResponseInterface $response
62
-	 * @return bool|void
62
+	 * @return null|false
63 63
 	 * @throws \Sabre\DAV\Exception\BadRequest
64 64
 	 * @throws \Sabre\DAV\Exception\Conflict
65 65
 	 * @throws \Sabre\DAV\Exception\NotFound
Please login to merge, or discard this patch.
apps/files_trashbin/lib/Trashbin.php 1 patch
Doc Comments   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,6 +259,9 @@  discard block
 block discarded – undo
259 259
 
260 260
 	/**
261 261
 	 *
262
+	 * @param string $targetFilename
263
+	 * @param string $targetLocation
264
+	 * @param integer $timestamp
262 265
 	 */
263 266
 	public static function insertTrashEntry($user, $targetFilename, $targetLocation, $timestamp) {
264 267
 		$query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`user`) VALUES (?,?,?,?)");
@@ -784,7 +787,7 @@  discard block
 block discarded – undo
784 787
 	 * if the size limit for the trash bin is reached, we delete the oldest
785 788
 	 * files in the trash bin until we meet the limit again
786 789
 	 *
787
-	 * @param array $files
790
+	 * @param \OCP\Files\FileInfo[] $files
788 791
 	 * @param string $user
789 792
 	 * @param int $availableSpace available disc space
790 793
 	 * @return int size of deleted files
@@ -818,7 +821,7 @@  discard block
 block discarded – undo
818 821
 	/**
819 822
 	 * delete files older then max storage time
820 823
 	 *
821
-	 * @param array $files list of files sorted by mtime
824
+	 * @param \OCP\Files\FileInfo[] $files list of files sorted by mtime
822 825
 	 * @param string $user
823 826
 	 * @return integer[] size of deleted files and number of deleted files
824 827
 	 */
@@ -888,6 +891,7 @@  discard block
 block discarded – undo
888 891
 	 *
889 892
 	 * @param string $filename name of the file which should be restored
890 893
 	 * @param int $timestamp timestamp when the file was deleted
894
+	 * @param string|boolean $user
891 895
 	 * @return array
892 896
 	 */
893 897
 	private static function getVersionsFromTrash($filename, $timestamp, $user) {
Please login to merge, or discard this patch.
lib/private/Files/Storage/Common.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -704,7 +704,7 @@
 block discarded – undo
704 704
 	}
705 705
 
706 706
 	/**
707
-	 * @param $internalPath
707
+	 * @param string $internalPath
708 708
 	 * @return array
709 709
 	 */
710 710
 	protected function convertInternalPathToGlobalPath($internalPath) {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,6 @@
 block discarded – undo
51 51
 use OCP\Files\InvalidPathException;
52 52
 use OCP\Files\ReservedWordException;
53 53
 use OCP\Files\Storage\ILockingStorage;
54
-use OCP\Files\Storage\IStorage;
55 54
 use OCP\Files\Storage\IVersionedStorage;
56 55
 use OCP\Lock\ILockingProvider;
57 56
 
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/Auth.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -255,7 +255,7 @@
 block discarded – undo
255 255
 	}
256 256
 
257 257
 	/**
258
-	 * @param $user
258
+	 * @param \OCP\IUser|null $user
259 259
 	 * @throws ServiceUnavailable
260 260
 	 */
261 261
 	private function checkAccountModule($user) {
Please login to merge, or discard this patch.
apps/files_versions/lib/Storage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -315,6 +315,9 @@
 block discarded – undo
315 315
 		}
316 316
 	}
317 317
 
318
+	/**
319
+	 * @param string $revision
320
+	 */
318 321
 	public static function restoreVersion($uid, $filename, $fileToRestore, $revision) {
319 322
 		if (\OC::$server->getConfig()->getSystemValue('files_versions', Storage::DEFAULTENABLED) !== true) {
320 323
 			return false;
Please login to merge, or discard this patch.