VKCOM / noverify

Pretty fast linter (code static analysis utility) for PHP
MIT License
673 stars 57 forks source link

linter: improved `unused` checker #1212

Open fuale opened 1 year ago

fuale commented 1 year ago

In the following cases:

$bar = 1; $obj->foo($bar); // consider $obj has __call magic method.

no need to throw a warning about an unused variable, if it inside magic method call.