Aimeos\Shop\Base\Context::addCache PHP Method

addCache() protected method

Adds the cache object to the context
protected addCache ( Aimeos\MShop\Context\Item\Iface $context ) : Aimeos\MShop\Context\Item\Iface
$context Aimeos\MShop\Context\Item\Iface Context object including config
return Aimeos\MShop\Context\Item\Iface Modified context object
    protected function addCache(\Aimeos\MShop\Context\Item\Iface $context)
    {
        $cache = new \Aimeos\MAdmin\Cache\Proxy\Standard($context);
        $context->setCache($cache);
        return $context;
    }