You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In IntelliJ IDEA phpcs, incorrectly flags valid PHP code as an warning. Specifically, it misinterprets the type of class constants. For example, declaring a constant like final public const string JOURNEY; results in an error message from PHP CS Fixer stating
"phpcs: Class constants must be uppercase; expected STRING but found string".
It seems that PHP CS Fixer is incorrectly checking the type declaration (string) instead of the constant name (JOURNEY).