Property | Type | Description | |
---|---|---|---|
$_magicFunctions | Copied from the base class because it's declared as private there | ||
$_magicMethods | Copied from the base class because it's declared as private there |
Method | Description | |
---|---|---|
__construct ( ) : void | Constructor. |
Method | Description | |
---|---|---|
isInvalidName ( string $name ) : boolean | Supporting method to validate a function or method name. | |
processTokenOutsideScope ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void | Processes the tokens outside the scope. | |
processTokenWithinScope ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr, integer $currScope ) : void | Processes the tokens within the scope. |
protected isInvalidName ( string $name ) : boolean | ||
$name | string | Name of the function or method to validate |
return | boolean | TRUE if the function or method name is valid, FALSE otherwise |
protected processTokenOutsideScope ( PHP_CodeSniffer_File $phpcsFile, integer $stackPtr ) : void | ||
$phpcsFile | PHP_CodeSniffer_File | File being processed |
$stackPtr | integer | Position where this token was found |
return | void |
protected $_magicFunctions |