Completed
Pull Request — master (#26112)
by Thomas
12:39
created
apps/files_sharing/lib/External/Manager.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -28,6 +28,9 @@
 block discarded – undo
28 28
 
29 29
 	protected $mounts = [];
30 30
 
31
+	/**
32
+	 * @param string $mountPoint
33
+	 */
31 34
 	protected function registerMount($userId, $storage, $mountPoint, $arguments = null) {
32 35
 		if (!isset($this->mounts[$userId])) {
33 36
 			$this->mounts[$userId] = [];
Please login to merge, or discard this patch.
apps/files_sharing/lib/Migration.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,6 @@
 block discarded – undo
128 128
 	/**
129 129
 	 * Get $n re-shares from the database
130 130
 	 *
131
-	 * @param int $n The max number of shares to fetch
132 131
 	 * @return \Doctrine\DBAL\Driver\Statement
133 132
 	 */
134 133
 	private function getReShares() {
Please login to merge, or discard this patch.
lib/private/SystemTag/SystemTagManager.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 use OCP\SystemTag\TagAlreadyExistsException;
31 31
 use OCP\SystemTag\TagNotFoundException;
32 32
 use Symfony\Component\EventDispatcher\EventDispatcherInterface;
33
-use OCP\IUserManager;
34 33
 use OCP\IGroupManager;
35 34
 use OCP\SystemTag\ISystemTag;
36 35
 use OCP\IUser;
Please login to merge, or discard this patch.
lib/public/Files/StorageAuthException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 	 * StorageTimeoutException constructor.
31 31
 	 *
32 32
 	 * @param string $message
33
-	 * @param int $code
34 33
 	 * @param \Exception $previous
35 34
 	 * @since 9.0.0
36 35
 	 */
Please login to merge, or discard this patch.
lib/public/Files/StorageBadConfigException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 	 * StorageTimeoutException constructor.
31 31
 	 *
32 32
 	 * @param string $message
33
-	 * @param int $code
34 33
 	 * @param \Exception $previous
35 34
 	 * @since 9.0.0
36 35
 	 */
Please login to merge, or discard this patch.
lib/public/Files/StorageConnectionException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 	 * StorageTimeoutException constructor.
31 31
 	 *
32 32
 	 * @param string $message
33
-	 * @param int $code
34 33
 	 * @param \Exception $previous
35 34
 	 * @since 9.0.0
36 35
 	 */
Please login to merge, or discard this patch.
lib/public/Files/StorageTimeoutException.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 	 * StorageTimeoutException constructor.
31 31
 	 *
32 32
 	 * @param string $message
33
-	 * @param int $code
34 33
 	 * @param \Exception $previous
35 34
 	 * @since 9.0.0
36 35
 	 */
Please login to merge, or discard this patch.
apps/federatedfilesharing/lib/FederatedShareProvider.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
 	/**
323 323
 	 * store remote ID in federated reShare table
324 324
 	 *
325
-	 * @param $shareId
325
+	 * @param integer $shareId
326 326
 	 * @param $remoteId
327 327
 	 */
328 328
 	public function storeRemoteId($shareId, $remoteId) {
@@ -653,7 +653,7 @@  discard block
 block discarded – undo
653 653
 	/**
654 654
 	 * get database row of a give share
655 655
 	 *
656
-	 * @param $id
656
+	 * @param integer $id
657 657
 	 * @return array
658 658
 	 * @throws ShareNotFound
659 659
 	 */
Please login to merge, or discard this patch.
lib/public/Migration/IOutput.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,26 +24,30 @@
 block discarded – undo
24 24
 
25 25
 	/**
26 26
 	 * @param string $message
27
+	 * @return void
27 28
 	 */
28 29
 	public function info($message);
29 30
 
30 31
 	/**
31 32
 	 * @param string $message
33
+	 * @return void
32 34
 	 */
33 35
 	public function warning($message);
34 36
 
35 37
 	/**
36 38
 	 * @param int $max
39
+	 * @return void
37 40
 	 */
38 41
 	public function startProgress($max = 0);
39 42
 
40 43
 	/**
41 44
 	 * @param int $step
45
+	 * @return void
42 46
 	 */
43 47
 	public function advance($step = 1);
44 48
 
45 49
 	/**
46
-	 * @param int $max
50
+	 * @return void
47 51
 	 */
48 52
 	public function finishProgress();
49 53
 
Please login to merge, or discard this patch.