Zephir\ClassDefinition::hasConstantFromInterfaces PHP Method

hasConstantFromInterfaces() protected method

protected hasConstantFromInterfaces ( $name ) : boolean
$name
return boolean
    protected function hasConstantFromInterfaces($name)
    {
        if ($interfaces = $this->getImplementedInterfaceDefinitions()) {
            foreach ($interfaces as $interface) {
                if ($interface->hasConstant($name)) {
                    return true;
                }
            }
        }
        return false;
    }