Craft\Minimee_SettingsModel::getCachePath PHP Method

getCachePath() public method

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