You are here

public function FormErrorTSniff::registerFunctionNames in Coder 8.2

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

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

Return value

array

File

coder_sniffer/DrupalPractice/Sniffs/FunctionCalls/FormErrorTSniff.php, line 31

Class

FormErrorTSniff
Verifiies that messages passed to form_set_error() run through t().

Namespace

DrupalPractice\Sniffs\FunctionCalls

Code

public function registerFunctionNames() {
  return array(
    'form_set_error',
    'form_error',
  );
}