getMethodMapByFullyQualifiedClassName() public method

public getMethodMapByFullyQualifiedClassName ( FullyQualifiedClassName $fqsen ) : array
$fqsen Phan\Language\FQSEN\FullyQualifiedClassName
return array The set of methods associated with the given class
Example #1
0
File: Clazz.php Project: etsy/phan
 /**
  * @return Method[]
  * A list of methods on this class
  */
 public function getMethodMap(CodeBase $code_base) : array
 {
     return $code_base->getMethodMapByFullyQualifiedClassName($this->getFQSEN());
 }