The method markTestSkipped() does not exist on UsageFinder\Tests\TestCase.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
23
self::/** @scrutinizer ignore-call */
24
markTestSkipped('Download composer with the ./download-composer.sh shell script.');
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
24
}
25
26
if (is_dir(__DIR__ . '/example/vendor')) {
27
return;
28
}
29
30
$process = new Process(['php', $composerPath, 'install'], __DIR__ . '/example');
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.