* * @license http://opensource.org/licenses/bsd-license.php BSD * * @version $Id$ * */ class Solar_Cache extends Solar_Factory { /** * * User-provided configuration. * * Keys are ... * * `adapter` * : (string) The adapter class for the factory, default * 'Solar_Cache_Adapter_File'. * * @var array * */ protected $_Solar_Cache = array( 'adapter' => 'Solar_Cache_Adapter_File', ); }