Craft\Minimee_SettingsModel::getCacheUrl PHP Method

getCacheUrl() public method

public getCacheUrl ( ) : false | string
return false | string
    public function getCacheUrl()
    {
        $value = parent::getAttribute('cacheUrl');
        if (!$value) {
            return false;
        }
        $cacheUrl = craft()->config->parseEnvironmentString($value);
        return $this->forceTrailingSlash($cacheUrl);
    }