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
Report any occurence of super global (http://php.net/manual/en/language.variables.superglobals.php). In ideal world there should not be any, because the abstraction layer from one of Composer libraries (e.g. symfony/http-foundation) should be used.
Superglobals:
$GLOBALS (maybe not this one)
$_SERVER
$_GET
$_POST
$_FILES
$_COOKIE
$_SESSION (maybe not this one)
$_REQUEST
$_ENV
The text was updated successfully, but these errors were encountered:
Report any occurence of super global (http://php.net/manual/en/language.variables.superglobals.php). In ideal world there should not be any, because the abstraction layer from one of Composer libraries (e.g.
symfony/http-foundation
) should be used.Superglobals:
The text was updated successfully, but these errors were encountered: