PhpSandbox\PHPSandbox::hasBlacklistedMagicConsts PHP Method

hasBlacklistedMagicConsts() public method

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