PHP Class Kohana_Sniffs_NamingConventions_ValidVariableNameSniff, coding-standards

Inheritance: extends PHP_CodeSniffer_Standards_AbstractVariableSniff
Mostrar archivo Open project: kohana/coding-standards

Protected Methods

Method Description
processMemberVar ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void Processes class member variables.
processVariable ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void Processes normal variables.
processVariableInString ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void Processes interpolated variables in double quoted strings.

Private Methods

Method Description
validateName ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : boolean Supporting method to validate variable names.

Method Details

processMemberVar() protected method

Processes class member variables.
protected processMemberVar ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void
$phpcsFile PHP_CodeSniffer_File File being scanned
$stackPtr integer Position of the current token in the stack passed in $tokens
return void

processVariable() protected method

Processes normal variables.
protected processVariable ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void
$phpcsFile PHP_CodeSniffer_File File where this token was found
$stackPtr integer Position where the token was found
return void

processVariableInString() protected method

Processes interpolated variables in double quoted strings.
protected processVariableInString ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void
$phpcsFile PHP_CodeSniffer_File File where this token was found
$stackPtr integer Position where the token was found
return void