File
- drupal/core/vendor/phpunit/phpunit/PHPUnit/Util/GlobalState.php, line 275
Class
- PHPUnit_Util_GlobalState
- @package PHPUnit
@subpackage Util
@author Sebastian Bergmann <sebastian@phpunit.de>
@copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de>
@license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause…
Code
protected static function getSuperGlobalArrays() {
if (ini_get('register_long_arrays') == '1') {
return array_merge(self::$superGlobalArrays, self::$superGlobalArraysLong);
}
else {
return self::$superGlobalArrays;
}
}