Do not use the command syntax cc4m_logo_inline

IDSTAT-26
TitleDo not use the command syntax.
PriorityStrongly recommended
Severity level7
DescriptionDo not use command syntax statements in the code.
RationaleReadability and maintanability of the code decreases by the use of command syntax statements.

Avoid:

verifyNameLength namePersonA namePersonB

Instead use:

verifyNameLength("namePersonA", "namePersonB")