1 | <?php |
||
10 | class LinesTest extends TestCase { |
||
11 | |||
12 | const CONTENT = 'line content'; |
||
13 | |||
14 | /** @test */ |
||
15 | public function info() |
||
19 | |||
20 | /** @test */ |
||
21 | public function error() |
||
25 | |||
26 | /** @test */ |
||
27 | public function success() |
||
31 | |||
32 | /** @test */ |
||
33 | public function warning() |
||
37 | |||
38 | protected function checkLine($line, $type) |
||
50 | } |
||
51 |
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.