You are here

public function TCheckPlainSniff::registerFunctionNames in Coder 8.2

Same name and namespace in other branches
  1. 8.3 coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/TCheckPlainSniff.php \DrupalPractice\Sniffs\FunctionCalls\TCheckPlainSniff::registerFunctionNames()
  2. 8.3.x coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/TCheckPlainSniff.php \DrupalPractice\Sniffs\FunctionCalls\TCheckPlainSniff::registerFunctionNames()

Returns an array of function names this test wants to listen for.

Return value

array

File

coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/TCheckPlainSniff.php, line 32

Class

TCheckPlainSniff
Check that "@" and "%" placeholders in t()/watchdog() are not escaped twice with check_plain().

Namespace

DrupalPractice\Sniffs\FunctionCalls

Code

public function registerFunctionNames() {
  return array(
    't',
    'watchdog',
  );
}