Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6849 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6849 Rev 6866
Línea 39... Línea 39...
39
    
39
    
40
    /**
40
    /**
41
     * 
41
     * 
42
     * @param Adapter $adapter
42
     * @param Adapter $adapter
43
     * @param array config
-
 
-
 
43
     * @param array config
44
     
44
     * @param CacheInterface $cache
45
     */
45
     */
46
    public function __construct($adapter, $config)
46
    public function __construct($adapter, $config, $cache)
47
    {
47
    {
48
        $this->adapter = $adapter;
48
        $this->adapter = $adapter;
49
        $this->config = $config;
49
        $this->config = $config;
50
        $this->cache = CacheImpl::getInstance($config);
50
        $this->cache = $cache;
Línea 51... Línea 51...
51
    }
51
    }