class/WorkflowState/DeniedState.php
Constant sortIndex should be defined in uppercase Open
Open
const sortIndex = 10;
- Read upRead up
- Create a ticketCreate a ticket
- 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
}
Source https://phpmd.org/rules/naming.html#constantnamingconventions
Constant friendlyName should be defined in uppercase Open
Open
const friendlyName = 'Denied';
- Read upRead up
- Create a ticketCreate a ticket
- 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
}