. */ Doctrine::autoload('Doctrine_Db_EventListener'); /** * Doctrine_Db_Cache * * @package Doctrine * @subpackage Doctrine_Db * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Db_Cache extends Doctrine_Db_EventListener { protected $cache; public function __construct(Doctrine_Cache $cache) { $this->cache = $cache; } }