PhpSandbox\PHPSandbox::hasBlacklistedOperators PHP Method

hasBlacklistedOperators() public method

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