Phan\Language\Element\Func::getFQSEN PHP Method

getFQSEN() public method

public getFQSEN ( ) : FullyQualifiedFunctionName
return 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