The method getMethods() does not exist on Reflector. It seems like you code against a sub-type of Reflector such as ReflectionObject or ReflectionClass.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
20
/** @scrutinizer ignore-call */
21
$methodList = $this->reflection->getMethods();
Loading history...
21
22
1
foreach ($methodList as $methodInfo) {
23
1
$parser = new MethodParser($this->parserManager, $methodInfo);