1 | <?php |
||
14 | class RegressionFactory |
||
15 | { |
||
16 | /** |
||
17 | * @param array $data |
||
18 | * @return RegressionModel |
||
19 | * @throws TypeError |
||
20 | */ |
||
21 | public static function linear(array $data): RegressionModel |
||
25 | |||
26 | /** |
||
27 | * @param array $data |
||
28 | * @return RegressionModel |
||
29 | * @throws TypeError |
||
30 | */ |
||
31 | public static function exponential(array $data): RegressionModel |
||
35 | |||
36 | /** |
||
37 | * @param array $data |
||
38 | * @return RegressionModel |
||
39 | * @throws TypeError |
||
40 | */ |
||
41 | public static function logarithmic(array $data): RegressionModel |
||
45 | |||
46 | /** |
||
47 | * @param array $data |
||
48 | * @return RegressionModel |
||
49 | * @throws TypeError |
||
50 | */ |
||
51 | public static function power(array $data): RegressionModel |
||
55 | |||
56 | /** |
||
57 | * @param string $className |
||
58 | * @param array $data |
||
59 | * |
||
60 | * @return \Regression\RegressionModel |
||
61 | * @throws \TypeError |
||
62 | */ |
||
63 | protected static function createContainer(string $className, array $data): RegressionModel |
||
82 | } |
This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.
In this case you can add the
@ignore
PhpDoc annotation to the duplicate definition and it will be ignored.