Failed Conditions
Pull Request — master (#4)
by Mickael
01:17
created

src/SearcherTrait.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
namespace Louzet\ComposerLockFileParser;
4
5
trait SearcherTrait {
6
7
    public function vendorName(string $vendorName = '')
0 ignored issues
show
The parameter $vendorName is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
8
    {
9
        return 'works again !';
10
    }
11
}