<?php
namespace ConcreteCoreCacheLevel;
use ConcreteCoreCacheCache;
use StashDriverEphemeral;
use StashPool;
/**
* Class RequestCache
* Cache that only lives for the current request. This cache level is not configurable.
* @package ConcreteCoreCacheLevel
*/
class RequestCache extends Cache
{
protected function init()
{
$this->pool = new Pool(new Ephemeral());
$this->enable();
}
}