Phan\Language\FQSEN\FullyQualifiedClassElement::getFullyQualifiedClassName PHP Method

getFullyQualifiedClassName() public method

public getFullyQualifiedClassName ( ) : FullyQualifiedClassName
return FullyQualifiedClassName The fully qualified class name associated with this class element.
    public function getFullyQualifiedClassName() : FullyQualifiedClassName
    {
        return $this->fully_qualified_class_name;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * @return FullyQualifiedClassElement
  * The FQSEN of this class element from where it was
  * originally defined
  */
 public function getDefiningClassFQSEN() : FullyQualifiedClassName
 {
     if (is_null($this->defining_fqsen)) {
         throw new CodeBaseException($this->getFQSEN(), "No defining class for {$this->getFQSEN()}");
     }
     return $this->defining_fqsen->getFullyQualifiedClassName();
 }
All Usage Examples Of Phan\Language\FQSEN\FullyQualifiedClassElement::getFullyQualifiedClassName