Home
last modified time | relevance | path

Searched refs:globalVariables (Results 1 – 4 of 4) sorted by relevance

/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DRestorer.php53 $globalVariables = $snapshot->globalVariables();
59 if (isset($globalVariables[$key])) {
60 $GLOBALS[$key] = $globalVariables[$key];
H A DBlacklist.php23 private $globalVariables = array(); variable in SebastianBergmann\\GlobalState\\Blacklist
55 $this->globalVariables[$variableName] = true;
109 return isset($this->globalVariables[$variableName]);
H A DSnapshot.php29 private $globalVariables = array(); variable in SebastianBergmann\\GlobalState\\Snapshot
152 public function globalVariables() function in SebastianBergmann\\GlobalState\\Snapshot
154 return $this->globalVariables;
313 $this->globalVariables[$key] = unserialize(serialize($GLOBALS[$key]));
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php2343 $before->globalVariables(),
2344 $after->globalVariables(),