OrderCheckoutStates does not seem to conform to the naming convention (^[A-Z][a-zA-Z0-9]*Interface$).
This check examines a number of code elements and verifies that they conform
to the given naming conventions.
You can set conventions for local variables, abstract classes, utility classes, constant, properties,
methods, parameters, interfaces, classes, exceptions and special methods.
Loading history...
17
{
18
public const STATE_ADDRESSED = 'addressed';
19
20
public const STATE_CART = 'cart';
21
22
public const STATE_COMPLETED = 'completed';
23
24
public const STATE_PAYMENT_SELECTED = 'payment_selected';
25
26
public const STATE_PAYMENT_SKIPPED = 'payment_skipped';
27
28
public const STATE_SHIPPING_SELECTED = 'shipping_selected';
29
30
public const STATE_SHIPPING_SKIPPED = 'shipping_skipped';
This check examines a number of code elements and verifies that they conform to the given naming conventions.
You can set conventions for local variables, abstract classes, utility classes, constant, properties, methods, parameters, interfaces, classes, exceptions and special methods.