如何使用 PHPCS 为属性强制执行 snake_case?

How to enforce snake_case for properties with PHPCS?

我正在尝试查找规则,该规则将强制仅将属性放在 $snake_case

我有这个 CamelCase:

<rule ref="Squiz.NamingConventions.ValidVariableName.NotCamelCaps"/>

是否有这些规则的完整列表以及它们的作用?找不到他们。谢谢!

我最终包含了 Wordpress Coding Standard 并添加了这条规则:

<rule ref="WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase"/>