protected function StrictSchemaDisabledSniff::processVariable in Coder 8.3
Same name and namespace in other branches
- 8.3.x coder_sniffer/DrupalPractice/Sniffs/Objects/StrictSchemaDisabledSniff.php \DrupalPractice\Sniffs\Objects\StrictSchemaDisabledSniff::processVariable()
Called to process normal member vars.
Parameters
\PHP_CodeSniffer\Files\File $phpcsFile The PHP_CodeSniffer file where this: token was found.
int $stackPtr The position where the token was found.:
Return value
void|int Optionally returns a stack pointer. The sniff will not be called again on the current file until the returned stack pointer is reached. Return ($phpcsFile->numTokens + 1) to skip the rest of the file.
File
- coder_sniffer/
DrupalPractice/ Sniffs/ Objects/ StrictSchemaDisabledSniff.php, line 102
Class
- StrictSchemaDisabledSniff
- Checks that $strictConfigSchema is not set to FALSE in test classes.
Namespace
DrupalPractice\Sniffs\ObjectsCode
protected function processVariable(File $phpcsFile, $stackPtr) {
}