PHP class naming


Class naming in php follows the following rules:
a. Begins with a capital letter;
b. For variable names composed of multiple words, there is no space between the words, and the first letter of each word is capitalized.
Example: class MyClass or class DbOracle, etc.