In all Java IDEs I have used, refactoring/renaming was a breeze because IntelliJ would scan the projects files and rename everything for me.
I am currently using a project where there are hundreds of references to a class spread around hundreds of files. I would like to refactor it so my Compound class is renamed to CompoundTag.
So instead of new Compound(), the IDE (PhpStorm) should change it to new CompoundTag().
So, first I right clicked the file, went to Refactor -> Rename:
Next, I renamed it and made sure to check these options:
Finally, after clicking refactor.. nothing happens. The file name gets changed but nothing else in the project gets refactored. PhpStorm does not even change the class name.
How can I fix this to get PhpStorm to properly refactor my files?


