PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/NamingConventions/ValidVariableNameStandard.xml

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/NamingConventions/ValidVariableNameStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Zend/Docs/NamingConventions/ValidVariableNameStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 1,001 bytes
 

Contents

Class file image Download
<documentation title="Variable Names"> <standard> <![CDATA[ Variable names should be camelCased with the first letter lowercase. Private and protected member variables should begin with an underscore ]]> </standard> <code_comparison> <code title="Valid: A multi-word variable uses camel casing."> <![CDATA[ <em>$testNumber</em> = 1; ]]> </code> <code title="Invalid: A multi-word variable uses underscores and initial capitalization."> <![CDATA[ <em>$Test_Number</em> = 1; ]]> </code> </code_comparison> <code_comparison> <code title="Valid: A private member variable begins with an underscore."> <![CDATA[ class Foo { private $<em>_</em>bar; } ]]> </code> <code title="Invalid: A private member variable does not begin with an underscore."> <![CDATA[ class Foo { private $bar; } ]]> </code> </code_comparison> </documentation>