Emails 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 CONTACT_REQUEST = 'contact_request';
19
20
public const ORDER_CONFIRMATION = 'order_confirmation';
21
22
public const ORDER_CONFIRMATION_RESENT = 'order_confirmation_resent';
23
24
public const SHIPMENT_CONFIRMATION = 'shipment_confirmation';
25
26
public const USER_REGISTRATION = 'user_registration';
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.