PHP Code Standards
Jump to navigation
Jump to search
Popular Marketing Code Standards
1. Variable Naming Conventions
1.a Local Variables
Local variable names should all be lower case, ex.
If the local variable name is made up of multiple words, use snake case, ex.
email_address
1.b Classes
Class names should all be capitalized, ex.
Vertical
If the class name is made up of multiple words, use snake case, but preserving the first word capitalization, ex.
Vertical_groups