OrderPaymentTransitions 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_payment';
19
20
public const TRANSITION_REQUEST_PAYMENT = 'request_payment';
21
22
public const TRANSITION_PARTIALLY_AUTHORIZE = 'partially_authorize';
23
24
public const TRANSITION_AUTHORIZE = 'authorize';
25
26
public const TRANSITION_PARTIALLY_PAY = 'partially_pay';
27
28
public const TRANSITION_CANCEL = 'cancel';
29
30
public const TRANSITION_PAY = 'pay';
31
32
public const TRANSITION_PARTIALLY_REFUND = 'partially_refund';
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.