Completed
Push — master ( ca65b8...fdb873 )
by Björn
29:58
created
lib/private/legacy/user.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -311,7 +311,7 @@
 block discarded – undo
311 311
 	 * get the display name of the user currently logged in.
312 312
 	 *
313 313
 	 * @param string $uid
314
-	 * @return string|bool uid or false
314
+	 * @return string|false uid or false
315 315
 	 * @deprecated 8.1.0 fetch \OCP\IUser (has getDisplayName()) by using method
316 316
 	 *                   get() of \OCP\IUserManager - \OC::$server->getUserManager()
317 317
 	 */
Please login to merge, or discard this patch.
apps/provisioning_api/lib/Controller/GroupsController.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,6 @@
 block discarded – undo
74 74
 	 * @param IUserSession $userSession
75 75
 	 * @param AccountManager $accountManager
76 76
 	 * @param ILogger $logger
77
-	 * @param UsersController $userController
78 77
 	 */
79 78
 	public function __construct(string $appName,
80 79
 								IRequest $request,
Please login to merge, or discard this patch.
settings/Controller/CheckSetupController.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,6 +119,7 @@  discard block
 block discarded – undo
119 119
 
120 120
 	/**
121 121
 	* Checks if the Nextcloud server can connect to a specific URL using both HTTPS and HTTP
122
+	* @param string $sitename
122 123
 	* @return bool
123 124
 	*/
124 125
 	private function isSiteReachable($sitename) {
@@ -316,7 +317,7 @@  discard block
 block discarded – undo
316 317
 
317 318
 	/**
318 319
 	 * @NoCSRFRequired
319
-	 * @return DataResponse
320
+	 * @return DataDisplayResponse
320 321
 	 */
321 322
 	public function getFailedIntegrityCheckFiles() {
322 323
 		if(!$this->checker->isCodeCheckEnforced()) {
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
@@ -196,7 +196,7 @@
 block discarded – undo
196 196
 	 * @param string $password
197 197
 	 * @param string $email
198 198
 	 * @param array $groups
199
-	 * @param array $subadmins
199
+	 * @param array $subadmin
200 200
 	 * @param string $quota
201 201
 	 * @param string $language
202 202
 	 * @return DataResponse
Please login to merge, or discard this patch.
lib/private/Group/MetaData.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,6 @@
 block discarded – undo
52 52
 	 * @param string $user the uid of the current user
53 53
 	 * @param bool $isAdmin whether the current users is an admin
54 54
 	 * @param IGroupManager $groupManager
55
-	 * @param IUserManager $userManager
56 55
 	 * @param IUserSession $userSession
57 56
 	 */
58 57
 	public function __construct(
Please login to merge, or discard this patch.
lib/private/Avatar.php 1 patch
Doc Comments   +4 added lines, -2 removed lines patch added patch discarded remove patch
@@ -354,6 +354,7 @@  discard block
 block discarded – undo
354 354
 	 * Calculate steps between two Colors
355 355
 	 * @param object Color $steps start color
356 356
 	 * @param object Color $ends end color
357
+	 * @param integer $steps
357 358
 	 * @return array [r,g,b] steps for each color to go from $steps to $ends
358 359
 	 */
359 360
 	private function stepCalc($steps, $ends) {
@@ -366,8 +367,9 @@  discard block
 block discarded – undo
366 367
 
367 368
 	/**
368 369
 	 * Convert a string to an integer evenly
369
-	 * @param string $hash the text to parse
370
-	 * @param int $maximum the maximum range
370
+	 * @param integer $steps
371
+	 * @param Color $color1
372
+	 * @param Color $color2
371 373
 	 * @return int between 0 and $maximum
372 374
 	 */
373 375
 	private function mixPalette($steps, $color1, $color2) {
Please login to merge, or discard this patch.
lib/public/AppFramework/Db/Mapper.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -304,6 +304,7 @@  discard block
 block discarded – undo
304 304
 	 * @param array $params the parameters of the sql query
305 305
 	 * @param int $limit the maximum number of rows
306 306
 	 * @param int $offset from which row we want to start
307
+	 * @param string $msg
307 308
 	 * @return string formatted error message string
308 309
 	 * @since 9.1.0
309 310
 	 * @deprecated 14.0.0 Move over to QBMapper
@@ -359,7 +360,7 @@  discard block
 block discarded – undo
359 360
 	 * Returns an db result and throws exceptions when there are more or less
360 361
 	 * results
361 362
 	 * @param string $sql the sql query
362
-	 * @param array $params the parameters of the sql query
363
+	 * @param string[] $params the parameters of the sql query
363 364
 	 * @param int $limit the maximum number of rows
364 365
 	 * @param int $offset from which row we want to start
365 366
 	 * @throws DoesNotExistException if the item does not exist
Please login to merge, or discard this patch.
lib/private/Group/Database.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -380,7 +380,6 @@
 block discarded – undo
380 380
 	/**
381 381
 	 * get the number of disabled users in a group
382 382
 	 *
383
-	 * @param string $search
384 383
 	 * @return int|bool
385 384
 	 */
386 385
 	public function countDisabledInGroup(string $gid): int {
Please login to merge, or discard this patch.
lib/private/Authentication/TwoFactorAuth/Manager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,8 +164,8 @@
 block discarded – undo
164 164
 	}
165 165
 
166 166
 	/**
167
-	 * @param array $states
168
-	 * @param IProvider $providers
167
+	 * @param string[] $states
168
+	 * @param IProvider[] $providers
169 169
 	 */
170 170
 	private function isProviderMissing(array $states, array $providers): bool {
171 171
 		$indexed = [];
Please login to merge, or discard this patch.