| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function invokeTest(): void |
||
| 42 | { |
||
| 43 | $input = [ |
||
| 44 | 'handle' => $this->handle, |
||
| 45 | 'authorization' => $this->authorization |
||
| 46 | ]; |
||
| 47 | $testData = new TestData($input); |
||
| 48 | |||
| 49 | $test = new TestCase\AuthSource\Negotiate($testData); |
||
| 50 | $this->addTestResult($test->getTestResult()); |
||
| 51 | $this->setTestResult($test->getTestResult()); |
||
| 52 | } |
||
| 54 |
This check compares calls to functions or methods with their respective definitions. If the call has less 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. Please note the @ignore annotation hint above.