Commit c43d470a authored by pookey's avatar pookey

fixing var name

parent 2c306fdc
...@@ -34,18 +34,18 @@ ...@@ -34,18 +34,18 @@
abstract class Doctrine_Cache_Driver implements Doctrine_Cache_Interface 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 * constructor
* *
* @param array $options an array of options * @param array $_options an array of options
*/ */
public function __construct($options) public function __construct($options)
{ {
$this->options = $options; $this->_options = $options;
} }
/** /**
* setOption * setOption
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment