You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Utils::is_token_false_positive() method required sniffs to pass two tokens. The second token is calculated, not retrieved via token walking and may therefore be incorrect.
The method basically expects code to be written like so:
$_SERVER['key'];
... but all of the below are valid PHP and would fail the check because of the token calculation:
The
Utils::is_token_false_positive()
method required sniffs to pass two tokens. The second token is calculated, not retrieved via token walking and may therefore be incorrect.The method basically expects code to be written like so:
... but all of the below are valid PHP and would fail the check because of the token calculation:
The text was updated successfully, but these errors were encountered: