Phan\CodeBase::getPropertyMapByFullyQualifiedClassName PHP 메소드

getPropertyMapByFullyQualifiedClassName() 공개 메소드

public getPropertyMapByFullyQualifiedClassName ( FullyQualifiedClassName $fqsen ) : array
$fqsen Phan\Language\FQSEN\FullyQualifiedClassName
리턴 array The set of properties associated with the given class
    public function getPropertyMapByFullyQualifiedClassName(FullyQualifiedClassName $fqsen) : array
    {
        return $this->getClassMapByFullyQualifiedClassName($fqsen)->getPropertyMap();
    }

Usage Example

예제 #1
0
파일: Clazz.php 프로젝트: etsy/phan
 /**
  * @return Property[]
  * The list of properties on this class
  */
 public function getPropertyMap(CodeBase $code_base) : array
 {
     return $code_base->getPropertyMapByFullyQualifiedClassName($this->getFQSEN());
 }