You are here

public function RemoteAddressSniff::process in Coder 8.2

Same name and namespace in other branches
  1. 8.3 coder_sniffer/Drupal/Sniffs/Semantics/RemoteAddressSniff.php \Drupal\Sniffs\Semantics\RemoteAddressSniff::process()
  2. 8.3.x coder_sniffer/Drupal/Sniffs/Semantics/RemoteAddressSniff.php \Drupal\Sniffs\Semantics\RemoteAddressSniff::process()

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

Parameters

\HP_CodeSniffer\Files\File $phpcsFile The current file being processed.:

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

Return value

void

File

coder_sniffer/Drupal/Sniffs/Semantics/RemoteAddressSniff.php, line 48

Class

RemoteAddressSniff
Make sure that the function ip_address() is used instead of $_SERVER['REMOTE_ADDR'].

Namespace

Drupal\Sniffs\Semantics

Code

public function process(File $phpcsFile, $stackPtr) {
  $string = $phpcsFile
    ->getTokensAsString($stackPtr, 4);
  if ($string === '$_SERVER["REMOTE_ADDR"]' || $string === '$_SERVER[\'REMOTE_ADDR\']') {
    $error = 'Use the function ip_address() instead of $_SERVER[\'REMOTE_ADDR\']';
    $phpcsFile
      ->addError($error, $stackPtr, 'RemoteAddress');
  }
}