You are here

public function LCheckPlainSniff::processFunctionCall in Coder 8.2

Same name and namespace in other branches
  1. 8.3 coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/LCheckPlainSniff.php \DrupalPractice\Sniffs\FunctionCalls\LCheckPlainSniff::processFunctionCall()
  2. 8.3.x coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/LCheckPlainSniff.php \DrupalPractice\Sniffs\FunctionCalls\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

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\FunctionCalls

Code

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');
  }
}