You are here

abstract public function Drupal_Sniffs_Semantics_FunctionCall::processFunctionCall in Coder 7.2

Processes this function call.

Parameters

PHP_CodeSniffer_File $phpcsFile: The file being scanned.

int $stackPtr: The position of the function call in the stack.

int $openBracket: The position of the opening parenthesis in the stack.

int $closeBracket: The position of the closing parenthesis in the stack.

Drupal_Sniffs_Semantics_FunctionCallSniff $sniff: Can be used to retreive the function's arguments with the getArgument() method.

Return value

void

6 methods override Drupal_Sniffs_Semantics_FunctionCall::processFunctionCall()
Drupal_Sniffs_Semantics_ConstantNameSniff::processFunctionCall in coder_sniffer/Drupal/Sniffs/Semantics/ConstantNameSniff.php
Processes this function call.
Drupal_Sniffs_Semantics_FunctionAliasSniff::processFunctionCall in coder_sniffer/Drupal/Sniffs/Semantics/FunctionAliasSniff.php
Processes this function call.
Drupal_Sniffs_Semantics_FunctionTSniff::processFunctionCall in coder_sniffer/Drupal/Sniffs/Semantics/FunctionTSniff.php
Processes this function call.
Drupal_Sniffs_Semantics_FunctionWatchdogSniff::processFunctionCall in coder_sniffer/Drupal/Sniffs/Semantics/FunctionWatchdogSniff.php
Processes this function call.
Drupal_Sniffs_Semantics_LStringTranslatableSniff::processFunctionCall in coder_sniffer/Drupal/Sniffs/Semantics/LStringTranslatableSniff.php
Processes this function call.

... See full list

File

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

Class

Drupal_Sniffs_Semantics_FunctionCall
Helper class to sniff for specific function calls.

Code

public abstract function processFunctionCall(PHP_CodeSniffer_File $phpcsFile, $stackPtr, $openBracket, $closeBracket, Drupal_Sniffs_Semantics_FunctionCallSniff $sniff);