OrderCheckoutTransitions 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 GRAPH = 'sylius_order_checkout';
19
20
public const TRANSITION_ADDRESS = 'address';
21
22
public const TRANSITION_COMPLETE = 'complete';
23
24
public const TRANSITION_SELECT_PAYMENT = 'select_payment';
25
26
public const TRANSITION_SELECT_SHIPPING = 'select_shipping';
27
28
public const TRANSITION_SKIP_PAYMENT = 'skip_payment';
29
30
public const TRANSITION_SKIP_SHIPPING = 'skip_shipping';
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.