PhpSandbox\PHPSandbox::hasDefinedInterfaces PHP Method

hasDefinedInterfaces() public method

Query whether PHPSandbox instance has defined interfaces
public hasDefinedInterfaces ( ) : integer
return integer Returns the number of interfaces this instance has defined
    public function hasDefinedInterfaces()
    {
        return count($this->definitions['interfaces']);
    }
PHPSandbox