Codeception\Module\WPBootstrapper::unsetGlobalClosures PHP Method

unsetGlobalClosures() public method

public unsetGlobalClosures ( )
    public function unsetGlobalClosures()
    {
        foreach ($GLOBALS as $key => &$value) {
            if (in_array($key, $this->globalSnapshotSkipKeys)) {
                continue;
            }
            $value = $this->nullClosures($value);
        }
    }