<?php
namespace ConcreteCoreCacheLevel;
use ConcreteCoreCacheCache;
use StashPool;
class ObjectCache extends Cache
{
protected function init()
{
$driver = $this->loadConfig('object');
$this->pool = new Pool($driver);
$this->enable();
}
}