Pattern: Invalid class name
Issue: -
This rule mandates that all class names are UpperCamelCased. Camel casing class names is a generally accepted way of distinguishing constructor functions - which require the new
prefix to behave properly - from plain old functions.
# Good!
class BoaConstrictor
# Bad!
class boaConstrictor