Redaxscript\Cache::_getFile PHP Метод

_getFile() защищенный Метод

get the file
С версии: 3.0.0
protected _getFile ( mixed $bundle = null ) : string
$bundle mixed key or collection of the bundle
Результат string
    protected function _getFile($bundle = null)
    {
        if (is_string($bundle)) {
            $bundle = [$bundle];
        }
        return sha1(implode('-', $bundle)) . '.' . $this->_extension;
    }