PHP Classes

File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/CodeIgniter/Docs/NamingConventions/ValidFileNameStandard.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/ValidFileNameStandard.xml   Download  
File: zray/vendor/PHP_CodeSniffer-2.2.0/CodeSniffer/Standards/CodeIgniter/Docs/NamingConventions/ValidFileNameStandard.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: 1 year ago
Size: 788 bytes
 

Contents

Class file image Download
<documentation title="File names"> <standard> <![CDATA[ To be able to find which class is contained in a file, file names should be case-insensitively equal to class names. Some operating systems and tools are case-insensitive, though other are. So, file names should be in lower case to avoid any trouble. ]]> </standard> <code_comparison> <code title="Examples of valid file names"> <![CDATA[ super_class.php ]]> </code> <code title="Examples of invalid file names"> <![CDATA[ superclass.php // words not separated with underscores SuperClass.php // not in lower case and words not separated with underscores Super_class.php // not in lower case ]]> </code> </code_comparison> </documentation>