You are here

public function Drupal_Sniffs_Classes_InterfaceNameSniff::process in Coder 7.2

Processes this test, when one of its tokens is encountered.

Parameters

PHP_CodeSniffer_File $phpcsFile The file being scanned.:

int $stackPtr The position of the current token in: the stack passed in $tokens.

Return value

void

File

coder_sniffer/Drupal/Sniffs/Classes/InterfaceNameSniff.php, line 44

Class

Drupal_Sniffs_Classes_InterfaceNameSniff
Checks that interface names end with "Interface".

Code

public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) {
  $tokens = $phpcsFile
    ->getTokens();
  $namePtr = $phpcsFile
    ->findNext(T_WHITESPACE, $stackPtr + 1, null, true);
  $name = $tokens[$namePtr]['content'];
  if (substr($name, -9) !== 'Interface') {
    $warn = 'Interface names should always have the suffix "Interface"';
    $phpcsFile
      ->addWarning($warn, $namePtr, 'InterfaceSuffix');
  }
}