.phan/plugins/UnknownClassElementAccessPlugin.php
Constant UnknownObjectMethodCall should be defined in uppercase Open
Open
public const UnknownObjectMethodCall = 'PhanPluginUnknownObjectMethodCall';
- Read upRead up
- Exclude checks
ConstantNamingConventions
Since: 0.2
Class/Interface constant names should always be defined in uppercase.
Example
class Foo {
const MY_NUM = 0; // ok
const myTest = ""; // fail
}