getFile()) && null !== ($line = $v->getLine())) { $header = ''.$this->renderer->ideLink($file, $line).' '; } else { $header = 'PHP internal call '; } if ($callable = $v->getCallable()) { if ($callable instanceof MethodValue) { $function = $callable->getFullyQualifiedDisplayName(); } else { $function = $callable->getDisplayName(); } $function = $this->renderer->escape($function); if (null !== ($url = $callable->getPhpDocUrl())) { $function = ''.$function.''; } $header .= $function; } $children = $this->renderer->renderChildren($v); $header = $this->renderer->renderHeaderWrapper($v->getContext(), (bool) \strlen($children), $header); return '
'.$header.$children.'
'; } }