1
0
mirror of synced 2024-12-13 22:56:04 +03:00

fixing var name

This commit is contained in:
pookey 2007-02-09 22:58:19 +00:00
parent 2c306fdce0
commit c43d470ac0

View File

@ -34,18 +34,18 @@
abstract class Doctrine_Cache_Driver implements Doctrine_Cache_Interface
{
/**
* @var array $options an array of options
* @var array $_options an array of options
*/
protected $options;
protected $_options;
/**
* constructor
*
* @param array $options an array of options
* @param array $_options an array of options
*/
public function __construct($options)
{
$this->options = $options;
$this->_options = $options;
}
/**
* setOption