Goetas\Xsd\XsdToPhp\Php\Structure\PHPClass::hasPropertyInHierarchy PHP Method

hasPropertyInHierarchy() public method

public hasPropertyInHierarchy ( string $name ) : boolean
$name string
return boolean
    public function hasPropertyInHierarchy($name)
    {
        if ($this->hasProperty($name)) {
            return true;
        }
        if ($this instanceof PHPClass && $this->getExtends() && $this->getExtends()->hasPropertyInHierarchy($name)) {
            return true;
        }
        return false;
    }

Usage Example

示例#1
0
 protected function isOneType(PHPClass $type, $onlyParent = false)
 {
     if ($onlyParent) {
         $e = $type->getExtends();
         if ($e) {
             if ($e->hasProperty('__value')) {
                 return $e->getProperty('__value');
             }
         }
     } else {
         if ($type->hasPropertyInHierarchy('__value') && count($type->getPropertiesInHierarchy()) === 1) {
             return $type->getPropertyInHierarchy("__value");
         }
     }
 }