Skip to content

Commit 130a2d0

Browse files
committed
Addressing code style violations
1 parent 93db5cd commit 130a2d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WordPressVIPMinimum/Sniffs/Variables/ServerVariablesSniff.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function process( File $phpcsFile, $stackPtr ) {
5656
}
5757

5858
$variableNamePtr = $phpcsFile->findNext( array( T_CONSTANT_ENCAPSED_STRING ), ($stackPtr + 1), null, false, null, true );
59-
$variableName = str_replace( "'", '', $tokens[$variableNamePtr]['content'] );
59+
$variableName = str_replace( "'", '', $tokens[ $variableNamePtr ]['content'] );
6060

6161
if ( false === in_array( $variableName, $this->restrictedVariables , true ) ) {
6262
// Not the variable we are looking for.

0 commit comments

Comments
 (0)