Phan\Language\Element\Func::getFQSEN PHP 메소드

getFQSEN() 공개 메소드

public getFQSEN ( ) : FullyQualifiedFunctionName
리턴 Phan\Language\FQSEN\FullyQualifiedFunctionName
    public function getFQSEN() : FullyQualifiedFunctionName
    {
        return $this->fqsen;
    }

Usage Example

예제 #1
0
파일: CodeBase.php 프로젝트: etsy/phan
 /**
  * @param Func $function
  * A function to add to the code base
  *
  * @return void
  */
 public function addFunction(Func $function)
 {
     // Add it to the map of functions
     $this->fqsen_func_map[$function->getFQSEN()] = $function;
     // Add it to the set of functions and methods
     $this->func_and_method_set->attach($function);
 }
All Usage Examples Of Phan\Language\Element\Func::getFQSEN