PhpSandbox\PHPSandbox::hasBlacklistedKeywords PHP Method

hasBlacklistedKeywords() public method

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