From c43d470ac05442cad7bafbf96d5174a5510f5fb5 Mon Sep 17 00:00:00 2001 From: pookey Date: Fri, 9 Feb 2007 22:58:19 +0000 Subject: [PATCH] fixing var name --- lib/Doctrine/Cache/Driver.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/Cache/Driver.php b/lib/Doctrine/Cache/Driver.php index dc57452d9..6480c3aba 100644 --- a/lib/Doctrine/Cache/Driver.php +++ b/lib/Doctrine/Cache/Driver.php @@ -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