LdapTools\Cache\DoctrineCache::parseOptions PHP Метод

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

Check for any options that apply to the Doctrine cache.
protected parseOptions ( array $options )
$options array
    protected function parseOptions(array $options)
    {
        if (isset($options['cache_folder'])) {
            $this->setCacheFolder($options['cache_folder']);
        }
        if (isset($options['cache_prefix'])) {
            $this->cachePrefix = $options['cache_prefix'];
        }
    }