Imdb\CacheBase::sanitiseKey PHP Method

sanitiseKey() private method

Auxiliary method
private sanitiseKey ( string $key ) : string
$key string
return string
    private function sanitiseKey($key)
    {
        return str_replace(array('/', '\\', '?', '%', '*', ':', '|', '"', '<', '>'), '.', $key);
    }