Do you want to get quick glimpse of new project code quality?
Get error count for each PHPStan level!
composer require tomasvotruba/phpstan-bodyscan --devRun tool in your project. It will take some time, as it will run PHPStan for each level.
vendor/bin/phpstan-bodyscan↓
To get errors count per level:
+-------+-------------+
| Level | Error count |
+-------+-------------+
| 0 | 0 |
| 1 | 35 |
| 2 | 59 |
| 3 | 93 |
| 4 | 120 |
| 5 | 125 |
| 6 | 253 |
| 7 | 350 |
| 8 | 359 |
+-------+-------------+
<br>
### Limit level count
Are you interested only in a few levels?
```bash
vendor/bin/phpstan-bodyscan run --max-level 3Some projects need to load .env file to run PHPStan. You can do it like this:
vendor/bin/phpstan-bodyscan run --env-file .evnHappy coding!