Just had my first PHPStan PR merged! Check it out:
github.com/phpstan/php...
Do not report constructor unused parameter if class is an Attribute class by carlos-granados · Pull Request #3776 · phpstan/phpstan-src
When defining Attribute classes usually the constructor parameters are not used, as the values are retrieved using reflection.
This PR modifies the UnusedConstructorParametersRule class so that unu...