Variable casing cc4m_logo_inline

IDNAMING-5
TitleVariable names shall be lowerCamelCased.
PriorityRecommended
Severity level8
DescriptionVariable names including acronyms shall be lowerCamelCased.
RationaleConsistency in function naming improves readability and maintainability of the code.

Avoid:

foo_bar = 1;
EggsBenedict = 0;
theHTMLPage = "www.test.com";

Instead use:

fooBar = 1;
eggsBenedict = 0;
theHtmlPage = "www.test.com";