<?php
/**
* PHPCompatibility, an external standard for PHP_CodeSniffer.
*
* @package PHPCompatibility
* @copyright 2012-2020 PHPCompatibility Contributors
* @license https://opensource.org/licenses/LGPL-3.0 LGPL3
* @link https://github.com/PHPCompatibility/PHPCompatibility
*/
namespace PHPCompatibility\Sniffs\Variables;
use PHPCompatibility\Helpers\ScannedCode;
use PHPCompatibility\Sniff;
use PHP_CodeSniffer\Files\File;
use PHP_CodeSniffer\Util\Tokens;
use PHPCSUtils\Tokens\Collections;
/**
* The interpretation of variable variables has changed in PHP 7.0.
*
* PHP version 7.0
*
* @link https://www.php.net/manual/en/migration70.incompatible.php#migration70.incompatible.variable-handling.indirect
* @link https://wiki.php.net/rfc/uniform_variable_syntax
*
* @since 7.1.2
* @since 9.0.0 Renamed from `VariableVariablesSniff` to `NewUniformVariableSyntaxSniff`.
* @since 10.0.0 This class is now `final`.
*/
final class NewUniformVariableSyntaxSniff extends Sniff
{
/**
* Returns an array of tokens this test wants to listen for.
*
* @since 7.1.2
*
* @return array<int|string>
*/
public function register()
{
return [\T_VARIABLE];
}
/**
* Processes this test, when one of its tokens is encountered.
*
* @since 7.1.2
*
* @param \PHP_CodeSniffer\Files\File $phpcsFile The file being scanned.
* @param int $stackPtr The position of the current token
* in the stack passed in $tokens.
*
* @return void
*/
public function process(File $phpcsFile, $stackPtr)
{
if (ScannedCode::shouldRunOnOrAbove('7.0') === false) {
return;
}
$tokens = $phpcsFile->getTokens();
// Verify that the next token is a square open bracket. If not, bow out.
$nextToken = $phpcsFile->findNext(Tokens::$emptyTokens, ($stackPtr + 1), null, true);
if ($nextToken === false
|| $tokens[$nextToken]['code'] !== \T_OPEN_SQUARE_BRACKET
|| isset($tokens[$nextToken]['bracket_closer']) === false
) {
return;
}
// The previous non-empty token has to be a $, -> or ::.
$prevToken = $phpcsFile->findPrevious(Tokens::$emptyTokens, ($stackPtr - 1), null, true);
if (isset(Collections::objectOperators()[$tokens[$prevToken]['code']]) === false
&& $tokens[$prevToken]['code'] !== \T_DOLLAR
) {
return;
}
// For static object calls, it only applies when this is a function call.
if ($tokens[$prevToken]['code'] === \T_DOUBLE_COLON) {
$hasBrackets = $tokens[$nextToken]['bracket_closer'];
while (($hasBrackets = $phpcsFile->findNext(Tokens::$emptyTokens, ($hasBrackets + 1), null, true)) !== false) {
if ($tokens[$hasBrackets]['code'] === \T_OPEN_SQUARE_BRACKET) {
if (isset($tokens[$hasBrackets]['bracket_closer'])) {
$hasBrackets = $tokens[$hasBrackets]['bracket_closer'];
continue;
} else {
// Live coding.
return;
}
} elseif ($tokens[$hasBrackets]['code'] === \T_OPEN_PARENTHESIS) {
// Caught!
break;
} else {
// Not a function call, so bow out.
return;
}
}
}
$phpcsFile->addError(
'Indirect access to variables, properties and methods will be evaluated strictly in left-to-right order since PHP 7.0. Use curly braces to remove ambiguity.',
$stackPtr,
'Found'
);
}
}