Completed
Push — master ( efb497...d1ccba )
by Paweł
03:23
created
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.
classes/code_review.php 1 patch
Doc Comments   +3 added lines, -4 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;
@@ -279,7 +279,6 @@  discard block
 block discarded – undo
279 279
 	}
280 280
 
281 281
 	/**
282
-	 * @param string $maxVersion
283 282
 	 * @return array
284 283
 	 */
285 284
 	public static function getPrivateFunctionsList() {
@@ -307,8 +306,8 @@  discard block
 block discarded – undo
307 306
 	 *
308 307
 	 * @param PhpFileParser $tokens
309 308
 	 * @param SplFileInfo   $file
310
-	 * @param               $version
311
-	 * @param               $maxVersion max version to return
309
+	 * @param               string|null $version
310
+	 * @param               string $maxVersion max version to return
312 311
 	 * @return array
313 312
 	 */
314 313
 	private static function getDeprecatedFunctionsFromTokens(PhpFileParser $tokens, SplFileInfo $file, $version, $maxVersion) {
Please login to merge, or discard this patch.