PhpSandbox\PHPSandbox::hasBlacklistedNamespaces PHP Method

hasBlacklistedNamespaces() public method

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