You are here

public function Drupal_Sniffs_Semantics_FunctionWatchdogSniff::registerFunctionNames in Coder 7.2

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

Return value

array

File

coder_sniffer/Drupal/Sniffs/Semantics/FunctionWatchdogSniff.php, line 28

Class

Drupal_Sniffs_Semantics_FunctionWatchdogSniff
Checks that the second argument to watchdog() is not enclosed with t().

Code

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