for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace veejay\jsonrpc\tests;
final class Api extends \veejay\jsonrpc\Api
{
public function withoutParams()
return 'withoutParams';
}
public function withParams($params)
return 'withParams: ' . implode(', ', $params);
public function errorMethod()
return notExists();
notExists
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
return /** @scrutinizer ignore-call */ notExists();