The call to GenericApi::getUri() has too many arguments starting with $body.
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 @ignorePhpDoc
annotation to the duplicate definition and it will be ignored.
Loading history...
17
$files
18
)
19
)
20
;
21
22
return $response->getStatusCode() === 204;
23
}
24
25
public function update($id, array $body, array $uriParameters = [], array $files = [])
This check looks for function calls that miss required arguments.