Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libs/Zend/Config/Writer.php')
-rw-r--r--libs/Zend/Config/Writer.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/libs/Zend/Config/Writer.php b/libs/Zend/Config/Writer.php
index 56bb66bfd1..9bfedca748 100644
--- a/libs/Zend/Config/Writer.php
+++ b/libs/Zend/Config/Writer.php
@@ -14,28 +14,28 @@
*
* @category Zend
* @package Zend_Config
- * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id: Writer.php 16201 2009-06-21 18:51:15Z thomas $
+ * @version $Id: Writer.php 20096 2010-01-06 02:05:09Z bkarwin $
*/
/**
* @category Zend
* @package Zend_Config
- * @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
+ * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
abstract class Zend_Config_Writer
{
/**
* Option keys to skip when calling setOptions()
- *
+ *
* @var array
*/
protected $_skipOptions = array(
'options'
);
-
+
/**
* Config object to write
*
@@ -45,8 +45,8 @@ abstract class Zend_Config_Writer
/**
* Create a new adapter
- *
- * $options can only be passed as array or be omitted
+ *
+ * $options can only be passed as array or be omitted
*
* @param null|array $options
*/
@@ -56,7 +56,7 @@ abstract class Zend_Config_Writer
$this->setOptions($options);
}
}
-
+
/**
* Set options via a Zend_Config instance
*
@@ -66,10 +66,10 @@ abstract class Zend_Config_Writer
public function setConfig(Zend_Config $config)
{
$this->_config = $config;
-
+
return $this;
}
-
+
/**
* Set options via an array
*
@@ -88,10 +88,10 @@ abstract class Zend_Config_Writer
$this->$method($value);
}
}
-
+
return $this;
}
-
+
/**
* Write a Zend_Config object to it's target
*