Passed
Branch dev (a25f63)
by Darko
15:17
created
nntmux/XXX.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 	/**
280 280
 	 * Order types for xxx page.
281 281
 	 *
282
-	 * @return array
282
+	 * @return string[]
283 283
 	 */
284 284
 	public function getXXXOrdering()
285 285
 	{
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 	/**
396 396
 	 * Fetch xxx info for the movie.
397 397
 	 *
398
-	 * @param $xxxmovie
398
+	 * @param string $xxxmovie
399 399
 	 *
400 400
 	 * @return bool
401 401
 	 */
@@ -630,7 +630,7 @@  discard block
 block discarded – undo
630 630
 	/**
631 631
 	 * Checks xxxinfo to make sure releases exist
632 632
 	 *
633
-	 * @param $releaseName
633
+	 * @param string $releaseName
634 634
 	 *
635 635
 	 * @return array|bool
636 636
 	 */
Please login to merge, or discard this patch.
www/admin/opcachestats.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -61,6 +61,9 @@
 block discarded – undo
61 61
 		return $self;
62 62
 	}
63 63
 
64
+	/**
65
+	 * @param string $name
66
+	 */
64 67
 	public function getOption($name = null)
65 68
 	{
66 69
 		if ($name === null) {
Please login to merge, or discard this patch.
www/plugins/function.html_options_multiple.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -167,6 +167,10 @@
 block discarded – undo
167 167
 	}
168 168
 	return $_html_result;
169 169
 }
170
+/**
171
+ * @param string|null $id
172
+ * @param integer $idx
173
+ */
170 174
 function smarty_function_html_options_multiple_optgroup($key, $values, $selected, $id, $class, &$idx)
171 175
 {
172 176
 	$optgroup_html = '<optgroup label="' . smarty_function_escape_special_chars($key) . '">' . "\n";
Please login to merge, or discard this patch.