phpDocumentor\Reflection\DocBlock\Tag\ReturnTag::getTypesCollection PHP 메소드

getTypesCollection() 보호된 메소드

Returns the type collection.
protected getTypesCollection ( ) : void
리턴 void
    protected function getTypesCollection()
    {
        if (null === $this->types) {
            $this->types = new Collection(array($this->type), $this->docblock ? $this->docblock->getContext() : null);
        }
        return $this->types;
    }