You are here

public function Drupal_Sniffs_Semantics_LStringTranslatableSniff::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/LStringTranslatableSniff.php, line 28

Class

Drupal_Sniffs_Semantics_LStringTranslatableSniff
Checks that string literals passed to l() are translatable.

Code

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