The method info() does not exist on Someshwer\WorldCountries\Facades\World. Since you implemented __callStatic, consider adding a @method annotation.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
38
/** @scrutinizer ignore-call */
39
$info = World::info();
Loading history...
39
40
// Assert
41
$this->assertEquals($info['package_name'], 'Laravel - My World');
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.