PHP Classes

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

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Download Installed Plugin   vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidVariableNameStandard.xml   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/PEAR/Docs/NamingConventions/ValidVariableNameStandard.xml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Download Installed Plugin
Download a WordPress plugin as a ZIP archive
Author: By
Last change:
Date: Yesterday
Size: 779 bytes
 

Contents

Class file image Download
<documentation title="Variable Names"> <standard> <![CDATA[ Private member variable names should be prefixed with an underscore and public/protected variable names should not. ]]> </standard> <code_comparison> <code title="Valid: Proper member variable names."> <![CDATA[ class Foo { public $<em>publicVar</em>; protected $<em>protectedVar</em>; private $<em>_privateVar</em>; } ]]> </code> <code title="Invalid: Underscores used on public/protected variables and not used on private variables."> <![CDATA[ class Foo { public $<em>_publicVar</em>; protected $<em>_protectedVar</em>; private $<em>privateVar</em>; } ]]> </code> </code_comparison> </documentation>