Neos\Flow\ResourceManagement\Target\FileSystemTarget::getResourcesBaseUri PHP Method

getResourcesBaseUri() protected method

Returns the resolved absolute base URI for resources of this target.
protected getResourcesBaseUri ( ) : string
return string The absolute base URI for resources in this target
    protected function getResourcesBaseUri()
    {
        if ($this->absoluteBaseUri === null) {
            $this->absoluteBaseUri = $this->detectResourcesBaseUri();
        }
        return $this->absoluteBaseUri;
    }