Completed
Push — master ( 612575...486a28 )
by Paweł
03:08
created
classes/code_review.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
 	}
36 36
 
37 37
 	/**
38
-	 * @return array
38
+	 * @return Iterator
39 39
 	 */
40 40
 	public static function getConfig() {
41 41
 		return self::$config;
@@ -274,7 +274,6 @@  discard block
 block discarded – undo
274 274
 	}
275 275
 
276 276
 	/**
277
-	 * @param string $maxVersion
278 277
 	 * @return array
279 278
 	 */
280 279
 	public static function getPrivateFunctionsList() {
@@ -302,7 +301,7 @@  discard block
 block discarded – undo
302 301
 	 *
303 302
 	 * @param PhpFileParser $tokens
304 303
 	 * @param SplFileInfo   $file
305
-	 * @param               $version
304
+	 * @param               string|null $version
306 305
 	 * @return array
307 306
 	 */
308 307
 	private static function getDeprecatedFunctionsFromTokens(PhpFileParser $tokens, SplFileInfo $file, $version) {
Please login to merge, or discard this patch.
classes/CodeReviewAnalyzer.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,6 @@
 block discarded – undo
56 56
 
57 57
 	/**
58 58
 	 * @param string $subPath
59
-	 * @param bool   $skipInactive
60 59
 	 * @throws CodeReview_IOException
61 60
 	 * @return CodeReviewFileFilterIterator
62 61
 	 */
Please login to merge, or discard this patch.
classes/CodeReviewConfig.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,8 @@
 block discarded – undo
29 29
 	}
30 30
 
31 31
 	/**
32
-	 * @param      $key
33
-	 * @param null $default
32
+	 * @param      string $key
33
+	 * @param boolean $default
34 34
 	 * @return null
35 35
 	 */
36 36
 	public function getOption($key, $default = null) {
Please login to merge, or discard this patch.