| Subject | Details |
| :------------- | :---------------------------------------------------------------------------- |
| Plugin | Php Inspections (EA Extended) or Php Inspections (EA Ultimate), which version |
| Language level | e.g. PHP 7.2 (check project settings or composer.json) |
when I coding in my project ,I can see Inspections info, but in all third-party components (e.g. vendor folder) I can not see, can you help me with that? I want to modify files in vendor with inspections info please
Hi,
I'm pretty sure it's the default behaviour for excluded folders in native PHPStorm.
You should be able to reinclude those folders in File > Settings > Directories.
I don't think editing files in the vendor folder directly is a good idea at all. You know that whenever you install the packages on another machine or update the packages, all your changes will be gone?
Fork the package and build an own version of it, if no other way is possible.
As folks mentioned, that's standard IDE behaviour. Perhaps you can reach PhpStorm folks for more details, but I can not remember if it's possible to enable inspection in vendor directories (should be possible).
Most helpful comment
I don't think editing files in the vendor folder directly is a good idea at all. You know that whenever you install the packages on another machine or update the packages, all your changes will be gone?
Fork the package and build an own version of it, if no other way is possible.