PhpSandbox\PHPSandbox::hasWhitelistedMagicConsts PHP Method

hasWhitelistedMagicConsts() public method

Query whether PHPSandbox instance has whitelisted magic constants.
public hasWhitelistedMagicConsts ( ) : integer
return integer Returns the number of whitelisted magic constants this instance has defined
    public function hasWhitelistedMagicConsts()
    {
        return count($this->whitelist['magic_constants']);
    }
PHPSandbox