forked from GNUsocial/gnu-social
25 lines
601 B
PHP
25 lines
601 B
PHP
<?php
|
|
/**
|
|
* @link http://github.com/zendframework/zend-cache for the canonical source repository
|
|
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
|
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
|
*/
|
|
|
|
namespace Zend\Cache;
|
|
|
|
class Module
|
|
{
|
|
/**
|
|
* Return default zend-cache configuration for zend-mvc context.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getConfig()
|
|
{
|
|
$provider = new ConfigProvider();
|
|
return [
|
|
'service_manager' => $provider->getDependencyConfig(),
|
|
];
|
|
}
|
|
}
|