phpDocumentor\Reflection\DocBlock\Tag\ExampleTag::getContent PHP Method

getContent() public method

public getContent ( )
    public function getContent()
    {
        if (null === $this->content) {
            $filePath = '';
            if ($this->isURI) {
                if (false === strpos($this->filePath, ':')) {
                    $filePath = str_replace('%2F', '/', rawurlencode($this->filePath));
                } else {
                    $filePath = $this->filePath;
                }
            } else {
                $filePath = '"' . $this->filePath . '"';
            }
            $this->content = $filePath . ' ' . $this->getContent();
        }
        return $this->content;
    }