更改 Web 文件夹名称后,PHPStorm 中的 Symfony 资产路径突出显示

Symfony asset path highlight in PHPStorm after changing web folder name

在将 Symfony3.4 中的目录名称从 web 更改为 public_html 之后,IDE(启用了 Symfony 插件的 PHPStorm)不断突出显示所有资产路径:

网站正常运行,所有资产加载正常。

我是否需要更改任何内容来告诉 IDE 使用新重命名的文件夹作为资产?

也编辑了 composer.json

...
"symfony-web-dir": "public_html",
...
  1. 打开 PhpStorm 设置。
  2. 搜索 'Symfony'
  3. Select 'Symfony' 节点(在 'PHP' 下)
  4. Web Directory 值设置为 public_html
  5. 继续编码! :)

NOTICE: This, of course, requires that you have the IntelliJ Symfony Plugin installed and enabled.