function LCheckPlainSniff::processFunctionCall
Processes this function call.
Parameters
\PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.:
int $stackPtr The position of the function call in: the stack.
int $openBracket The position of the opening: parenthesis in the stack.
int $closeBracket The position of the closing: parenthesis in the stack.
Return value
void
File
-
vendor/
drupal/ coder/ coder_sniffer/ DrupalPractice/ Sniffs/ FunctionCalls/ LCheckPlainSniff.php, line 51
Class
- LCheckPlainSniff
- The first argument of the l() function should not be check_plain()'ed.
Namespace
DrupalPractice\Sniffs\FunctionCallsCode
public function processFunctionCall(File $phpcsFile, $stackPtr, $openBracket, $closeBracket) {
$tokens = $phpcsFile->getTokens();
$argument = $this->getArgument(1);
if ($tokens[$argument['start']]['content'] === 'check_plain') {
$warning = 'Do not use check_plain() on the first argument of l(), because l() will sanitize it for you by default';
$phpcsFile->addWarning($warning, $argument['start'], 'LCheckPlain');
}
}