public function Blacklist::isGlobalVariableBlacklisted in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/sebastian/global-state/src/Blacklist.php \SebastianBergmann\GlobalState\Blacklist::isGlobalVariableBlacklisted()
Parameters
string $variableName:
Return value
boolean
File
- vendor/
sebastian/ global-state/ src/ Blacklist.php, line 144
Class
- Blacklist
- A blacklist for global state elements that should not be snapshotted.
Namespace
SebastianBergmann\GlobalStateCode
public function isGlobalVariableBlacklisted($variableName) {
return isset($this->globalVariables[$variableName]);
}