Completed
Pull Request — master (#3361)
by Sander
07:50
created
apps/files_external/lib/Lib/Storage/FTP.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -139,6 +139,9 @@
 block discarded – undo
139 139
 		return false;
140 140
 	}
141 141
 
142
+	/**
143
+	 * @param string $path
144
+	 */
142 145
 	public function writeBack($tmpFile, $path) {
143 146
 		$this->uploadFile($tmpFile, $path);
144 147
 		unlink($tmpFile);
Please login to merge, or discard this patch.
apps/files_external/lib/Lib/Storage/Swift.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -616,6 +616,9 @@
 block discarded – undo
616 616
 		return $this->container;
617 617
 	}
618 618
 
619
+	/**
620
+	 * @param string $path
621
+	 */
619 622
 	public function writeBack($tmpFile, $path) {
620 623
 		$fileData = fopen($tmpFile, 'r');
621 624
 		$this->getContainer()->uploadObject($path, $fileData);
Please login to merge, or discard this patch.
apps/files_sharing/lib/Controller/ShareController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -597,7 +597,7 @@
 block discarded – undo
597 597
 	 * publish activity
598 598
 	 *
599 599
 	 * @param string $subject
600
-	 * @param array $parameters
600
+	 * @param string[] $parameters
601 601
 	 * @param string $affectedUser
602 602
 	 * @param int $fileId
603 603
 	 * @param string $filePath
Please login to merge, or discard this patch.
apps/files_sharing/lib/Controller/ShareesAPIController.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
 	 * split user and remote from federated cloud id
359 359
 	 *
360 360
 	 * @param string $address federated share address
361
-	 * @return array [user, remoteURL]
361
+	 * @return string[] [user, remoteURL]
362 362
 	 * @throws \Exception
363 363
 	 */
364 364
 	public function splitUserRemote($address) {
@@ -633,6 +633,9 @@  discard block
 block discarded – undo
633 633
 		return $result;
634 634
 	}
635 635
 
636
+	/**
637
+	 * @param string $search
638
+	 */
636 639
 	protected function getLookup($search) {
637 640
 		$isEnabled = $this->config->getAppValue('files_sharing', 'lookupServerEnabled', 'no');
638 641
 		$result = [];
Please login to merge, or discard this patch.
apps/files_sharing/lib/SharedStorage.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,6 @@
 block discarded – undo
32 32
 namespace OCA\Files_Sharing;
33 33
 
34 34
 use OC\Files\Filesystem;
35
-use OC\Files\Cache\FailedCache;
36 35
 use OC\Files\Storage\Wrapper\PermissionsMask;
37 36
 use OCA\Files_Sharing\ISharedStorage;
38 37
 use OC\Files\Storage\FailedStorage;
Please login to merge, or discard this patch.
apps/provisioning_api/lib/Controller/UsersController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
 	/**
226 226
 	 * creates a array with all user data
227 227
 	 *
228
-	 * @param $userId
228
+	 * @param string $userId
229 229
 	 * @return array
230 230
 	 * @throws OCSException
231 231
 	 */
Please login to merge, or discard this patch.
apps/sharebymail/lib/ShareByMailProvider.php 1 patch
Doc Comments   +11 added lines, -4 removed lines patch added patch discarded remove patch
@@ -185,10 +185,10 @@  discard block
 block discarded – undo
185 185
 	 * publish activity if a file/folder was shared by mail
186 186
 	 *
187 187
 	 * @param $subject
188
-	 * @param $parameters
189
-	 * @param $affectedUser
188
+	 * @param string[] $parameters
189
+	 * @param string $affectedUser
190 190
 	 * @param $fileId
191
-	 * @param $filePath
191
+	 * @param string $filePath
192 192
 	 */
193 193
 	protected function publishActivity($subject, $parameters, $affectedUser, $fileId, $filePath) {
194 194
 		$event = $this->activityManager->generateEvent();
@@ -240,6 +240,12 @@  discard block
 block discarded – undo
240 240
 
241 241
 	}
242 242
 
243
+	/**
244
+	 * @param string $link
245
+	 * @param string $owner
246
+	 * @param string $initiator
247
+	 * @param string $shareWith
248
+	 */
243 249
 	protected function sendMailNotification($filename, $link, $owner, $initiator, $shareWith) {
244 250
 		$ownerUser = $this->userManager->get($owner);
245 251
 		$initiatorUser = $this->userManager->get($initiator);
@@ -269,6 +275,7 @@  discard block
 block discarded – undo
269 275
 	 * @param $link
270 276
 	 * @param $owner
271 277
 	 * @param $initiator
278
+	 * @param string $template
272 279
 	 * @return string plain text mail
273 280
 	 * @throws HintException
274 281
 	 */
@@ -708,7 +715,7 @@  discard block
 block discarded – undo
708 715
 	/**
709 716
 	 * get database row of a give share
710 717
 	 *
711
-	 * @param $id
718
+	 * @param integer $id
712 719
 	 * @return array
713 720
 	 * @throws ShareNotFound
714 721
 	 */
Please login to merge, or discard this patch.
apps/user_ldap/lib/Helper.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -124,6 +124,9 @@
 block discarded – undo
124 124
 		return $nextPrefix;
125 125
 	}
126 126
 
127
+	/**
128
+	 * @param string $value
129
+	 */
127 130
 	private function getServersConfig($value) {
128 131
 		$regex = '/' . $value . '$/S';
129 132
 
Please login to merge, or discard this patch.
core/Middleware/TwoFactorMiddleware.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -104,6 +104,10 @@
 block discarded – undo
104 104
 		// TODO: dont check/enforce 2FA if a auth token is used
105 105
 	}
106 106
 
107
+	/**
108
+	 * @param Controller $controller
109
+	 * @param string $methodName
110
+	 */
107 111
 	private function checkTwoFactor($controller, $methodName, IUser $user) {
108 112
 		// If two-factor auth is in progress disallow access to any controllers
109 113
 		// defined within "LoginController".
Please login to merge, or discard this patch.