PHP Classes

File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/CodeIgniter/Docs/NamingConventions/ValidClassNameStandard.xml

Recommend this page to a friend!
  Classes of Simo   CodeIgniter Plugin for Z-Ray   zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/CodeIgniter/Docs/NamingConventions/ValidClassNameStandard.xml   Download  
File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/CodeIgniter/Docs/NamingConventions/ValidClassNameStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CodeIgniter Plugin for Z-Ray
Show CodeIgniter application information in Z-Ray
Author: By
Last change:
Date: 2 years ago
Size: 924 bytes
 

Contents

Class file image Download
<documentation title="Class names"> <standard> <![CDATA[ Class names should always start with an uppercase letter. Multiple words should be separated with an underscore, and not CamelCased. All other class methods should be entirely lowercased and named to clearly indicate their function, preferably including a verb. Try to avoid overly long and verbose names. ]]> </standard> <code_comparison> <code title="Examples of valid class names"> <![CDATA[ class Super_class ]]> </code> <code title="Examples of invalid class names"> <![CDATA[ class SuperClass // words not separated with underscores and words next to the first one start with an upper case class superclass // words not separated with underscores class Super_Class // words next to the first one start with an upper case ]]> </code> </code_comparison> </documentation>