You are here

public function Drupal_Sniffs_Commenting_FileCommentSniff::register in Coder 7.2

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

Return value

array

File

coder_sniffer/Drupal/Sniffs/Commenting/FileCommentSniff.php, line 39
Parses and verifies the doc comments for files.

Class

Drupal_Sniffs_Commenting_FileCommentSniff
Parses and verifies the doc comments for files.

Code

public function register() {
  return array(
    T_OPEN_TAG,
  );
}