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 'modules/Config.php')
-rwxr-xr-xmodules/Config.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/Config.php b/modules/Config.php
index 5686b62fe0..7450e93c6d 100755
--- a/modules/Config.php
+++ b/modules/Config.php
@@ -1,17 +1,17 @@
-<?php
-/**
- * Piwik - Open source web analytics
- *
- * @link http://piwik.org
- * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
- * @version $Id$
- *
- * @package Piwik_Helper
- */
+<?php
+/**
+ * Piwik - Open source web analytics
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later
+ * @version $Id$
+ *
+ * @package Piwik_Helper
+ */
require_once "Zend/Config/Ini.php";
-require_once "Zend/Registry.php";
-
+require_once "Zend/Registry.php";
+
/**
* This class is used to access configuration files values.
* You can also set these values, the updated configuration files will be written at the end of the script execution.
@@ -19,9 +19,9 @@ require_once "Zend/Registry.php";
* Example reading a value from the configuration file:
* $minValue = Zend_Registry::get('config')->General->minimumMemoryLimit;
*
- * will read the value minimumMemoryLimit under the [General] section of the config file
+ * will read the value minimumMemoryLimit under the [General] section of the config file
*
- * @package Piwik_Helper
+ * @package Piwik_Helper
*/
class Piwik_Config
{