Completed
Push — stable13 ( a2d82d...e3b401 )
by
unknown
20:25 queued 10:05
created
apps/files_sharing/lib/Cache.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -135,6 +135,10 @@
 block discarded – undo
135 135
 		return parent::moveFromCache($sourceCache, $sourcePath, $targetPath);
136 136
 	}
137 137
 
138
+	/**
139
+	 * @param ICacheEntry $entry
140
+	 * @param string $path
141
+	 */
138 142
 	protected function formatCacheEntry($entry, $path = null) {
139 143
 		if (is_null($path)) {
140 144
 			$path = isset($entry['path']) ? $entry['path'] : '';
Please login to merge, or discard this patch.
apps/dav/lib/AppInfo/Application.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
 	}
77 77
 
78 78
 	/**
79
-	 * @param IManager $contactsManager
79
+	 * @param IContactsManager $contactsManager
80 80
 	 */
81 81
 	public function setupSystemContactsProvider(IContactsManager $contactsManager) {
82 82
 		/** @var ContactsManager $cm */
Please login to merge, or discard this patch.
lib/private/Installer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -420,7 +420,7 @@
 block discarded – undo
420 420
 
421 421
 	/**
422 422
 	 * Check if app has been installed from git
423
-	 * @param string $name name of the application to remove
423
+	 * @param string $appId
424 424
 	 * @return boolean
425 425
 	 *
426 426
 	 * The function will check if the path contains a .git folder
Please login to merge, or discard this patch.
apps/dav/lib/Upload/ChunkingPlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 	 *
68 68
 	 * @param string $path source path
69 69
 	 * @param string $destination destination path
70
-	 * @return bool|void false to stop handling, void to skip this handler
70
+	 * @return null|false false to stop handling, void to skip this handler
71 71
 	 */
72 72
 	public function performMove($path, $destination) {
73 73
 		if (!$this->server->tree->nodeExists($destination)) {
Please login to merge, or discard this patch.
lib/private/Files/ObjectStore/S3Signature.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -119,6 +119,9 @@
 block discarded – undo
119 119
 		return Psr7\modify_request($request, $modify);
120 120
 	}
121 121
 
122
+	/**
123
+	 * @param string $string
124
+	 */
122 125
 	private function signString($string, CredentialsInterface $credentials)
123 126
 	{
124 127
 		return base64_encode(
Please login to merge, or discard this patch.
lib/private/Files/Cache/QuerySearchHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
 
86 86
 	/**
87 87
 	 * @param IQueryBuilder $builder
88
-	 * @param ISearchOperator $operator
88
+	 * @param ISearchOperator $operators
89 89
 	 */
90 90
 	public function searchOperatorArrayToDBExprArray(IQueryBuilder $builder, array $operators) {
91 91
 		return array_map(function ($operator) use ($builder) {
Please login to merge, or discard this patch.
lib/private/User/Manager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
 	 * @internal
194 194
 	 * @param string $loginName
195 195
 	 * @param string $password
196
-	 * @return mixed the User object on success, false otherwise
196
+	 * @return IUser the User object on success, false otherwise
197 197
 	 */
198 198
 	public function checkPasswordNoLogging($loginName, $password) {
199 199
 		$loginName = str_replace("\0", '', $loginName);
Please login to merge, or discard this patch.
lib/private/User/Session.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -339,7 +339,7 @@  discard block
 block discarded – undo
339 339
 	 * @param IUser $user
340 340
 	 * @param array $loginDetails
341 341
 	 * @param bool $regenerateSessionId
342
-	 * @return true returns true if login successful or an exception otherwise
342
+	 * @return boolean returns true if login successful or an exception otherwise
343 343
 	 * @throws LoginException
344 344
 	 */
345 345
 	public function completeLogin(IUser $user, array $loginDetails, $regenerateSessionId = true) {
@@ -446,6 +446,9 @@  discard block
 block discarded – undo
446 446
 		return $this->config->getSystemValue('token_auth_enforced', false);
447 447
 	}
448 448
 
449
+	/**
450
+	 * @param string $username
451
+	 */
449 452
 	protected function isTwoFactorEnforced($username) {
450 453
 		Util::emitHook(
451 454
 			'\OCA\Files_Sharing\API\Server2Server',
Please login to merge, or discard this patch.
apps/files/lib/Activity/Provider.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -112,6 +112,9 @@  discard block
 block discarded – undo
112 112
 		return $this->parseLongVersion($event, $previousEvent);
113 113
 	}
114 114
 
115
+	/**
116
+	 * @param string $icon
117
+	 */
115 118
 	protected function setIcon(IEvent $event, $icon) {
116 119
 		if ($this->activityManager->getRequirePNG()) {
117 120
 			$event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', $icon . '.png')));
@@ -252,6 +255,9 @@  discard block
 block discarded – undo
252 255
 		return $event;
253 256
 	}
254 257
 
258
+	/**
259
+	 * @param string $subject
260
+	 */
255 261
 	protected function setSubjects(IEvent $event, $subject, array $parameters) {
256 262
 		$placeholders = $replacements = [];
257 263
 		foreach ($parameters as $placeholder => $parameter) {
Please login to merge, or discard this patch.