new Doyo\Bridge\CodeCoverage\Driver\Dummy() of type Doyo\Bridge\CodeCoverage\Driver\Dummy is incompatible with the type string expected by parameter $name of Symfony\Component\Depend...terface::getParameter().
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
22
$dummy = $container->getParameter(/** @scrutinizer ignore-type */ new Dummy());
The method setProcessor() does not exist on Doyo\Bridge\CodeCoverage\Session\SessionInterface.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
25
$session->/** @scrutinizer ignore-call */
26
setProcessor($processor);
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.
The method setContainer() does not exist on Doyo\Bridge\CodeCoverage\Session\SessionInterface.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
26
$session->/** @scrutinizer ignore-call */
27
setContainer($container);
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.