You are here

public function Drupal_Sniffs_Semantics_FunctionCall::register in Coder 7.2

Returns an array of tokens this test wants to listen for.

Return value

array

File

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

Class

Drupal_Sniffs_Semantics_FunctionCall
Helper class to sniff for specific function calls.

Code

public function register() {

  // We do not listen for tokens, but for specific function calls.
  Drupal_Sniffs_Semantics_FunctionCallSniff::registerListener($this);
  return array();
}