ApiGen\Templating\Filters\UrlFilters::processReturnAnnotations PHP Method

processReturnAnnotations() private method

private processReturnAnnotations ( string $value, ApiGen\Contracts\Parser\Reflection\ElementReflectionInterface $reflectionElement ) : string
$value string
$reflectionElement ApiGen\Contracts\Parser\Reflection\ElementReflectionInterface
return string
    private function processReturnAnnotations($value, ElementReflectionInterface $reflectionElement)
    {
        $description = $this->getDescriptionFromValue($value, $reflectionElement);
        $typeLinks = $this->typeLinks($value, $reflectionElement);
        return $typeLinks . $description;
    }