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 'core/Config.php')
-rw-r--r--core/Config.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/Config.php b/core/Config.php
index 0c56f95b0c..f71baa710a 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -13,13 +13,13 @@ use Exception;
/**
* Singleton that provides read & write access to Piwik's INI configuration.
- *
+ *
* This class reads and writes to the `config/config.ini.php` file. If config
* options are missing from that file, this class will look for their default
* values in `config/global.ini.php`.
- *
+ *
* ### Examples
- *
+ *
* **Getting a value:**
*
* // read the minimum_memory_limit option under the [General] section
@@ -30,12 +30,12 @@ use Exception;
* // set the minimum_memory_limit option
* Config::getInstance()->General['minimum_memory_limit'] = 256;
* Config::getInstance()->forceSave();
- *
+ *
* **Setting an entire section:**
- *
+ *
* Config::getInstance()->MySection = array('myoption' => 1);
* Config::getInstance()->forceSave();
- *
+ *
* @method static \Piwik\Config getInstance()
*/
class Config extends Singleton