PhpCsFixer\Fixer\FunctionNotation\NoSpacesAfterFunctionNameFixer::fixFunctionCall PHP Method

fixFunctionCall() private method

Fixes whitespaces around braces of a function(y) call.
private fixFunctionCall ( Tokens $tokens, integer $index )
$tokens PhpCsFixer\Tokenizer\Tokens tokens to handle
$index integer index of token
    private function fixFunctionCall(Tokens $tokens, $index)
    {
        // remove space before opening brace
        if ($tokens[$index - 1]->isWhitespace()) {
            $tokens[$index - 1]->clear();
        }
    }