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

__toString() public method

public __toString ( ) : string
return string A string representation of this fully-qualified structural element name.
    public function __toString() : string
    {
        $fqsen_string = $this->memoize(__METHOD__, function () {
            return self::toString($this->getFullyQualifiedClassName(), $this->getName(), $this->alternate_id);
        });
        // print $fqsen_string . '|' . spl_object_hash($this) . "\n";
        return $fqsen_string;
    }