Completed
Pull Request — master (#8855)
by Blizzz
39:13 queued 21:34
created
lib/private/Avatar.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 	 * @param int $r
269 269
 	 * @param int $g
270 270
 	 * @param int $b
271
-	 * @return double[] Array containing h s l in [0, 1] range
271
+	 * @return double Array containing h s l in [0, 1] range
272 272
 	 */
273 273
 	private function rgbToHsl($r, $g, $b) {
274 274
 		$r /= 255.0;
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
 
307 307
 	/**
308 308
 	 * @param string $text
309
-	 * @return int[] Array containting r g b in the range [0, 255]
309
+	 * @return double[] Array containting r g b in the range [0, 255]
310 310
 	 */
311 311
 	private function avatarBackgroundColor($text) {
312 312
 		$hash = preg_replace('/[^0-9a-f]+/', '', $text);
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
 	 * @param double $h Hue in range [0, 1]
356 356
 	 * @param double $s Saturation in range [0, 1]
357 357
 	 * @param double $l Lightness in range [0, 1]
358
-	 * @return int[] Array containing r g b in the range [0, 255]
358
+	 * @return double[] Array containing r g b in the range [0, 255]
359 359
 	 */
360 360
 	private function hslToRgb($h, $s, $l){
361 361
 		$hue2rgb = function ($p, $q, $t){
Please login to merge, or discard this patch.
apps/dav/lib/CalDAV/Schedule/IMipPlugin.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 	 * @param ILogger $logger
96 96
 	 * @param ITimeFactory $timeFactory
97 97
 	 * @param L10NFactory $l10nFactory
98
-	 * @param IUrlGenerator $urlGenerator
98
+	 * @param IURLGenerator $urlGenerator
99 99
 	 * @param Defaults $defaults
100 100
 	 * @param string $userId
101 101
 	 */
Please login to merge, or discard this patch.
apps/dav/lib/Connector/Sabre/File.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -261,6 +261,9 @@  discard block
 block discarded – undo
261 261
 		return '"' . $this->info->getEtag() . '"';
262 262
 	}
263 263
 
264
+	/**
265
+	 * @param string $path
266
+	 */
264 267
 	private function getPartFileBasePath($path) {
265 268
 		$partFileInStorage = \OC::$server->getConfig()->getSystemValue('part_file_in_storage', true);
266 269
 		if ($partFileInStorage) {
@@ -606,6 +609,9 @@  discard block
 block discarded – undo
606 609
 		return $this->info->getChecksum();
607 610
 	}
608 611
 
612
+	/**
613
+	 * @param string $string
614
+	 */
609 615
 	protected function header($string) {
610 616
 		\header($string);
611 617
 	}
Please login to merge, or discard this patch.
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.