forked from litecommerce/core
-
Notifications
You must be signed in to change notification settings - Fork 0
PHP Coding Standards
zenmiu edited this page Aug 5, 2011
·
5 revisions
-
Pascal Casing - naming format, where each logical word begins with a capital letter. (Example: TestCounter).
-
Camel Casing - naming format, where the first character of the first logical word begins with a lowercase letter, and the other logical words begin with a capital one, similarly to Pascal Casing. (Example: testCounter).
-
Upper case - naming format, where names consist of capital letters only.
-
C-comment - a comment in the format: /* ... */
-
C++-comment - a comment in the format: // ...