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:
authorChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-23 22:27:56 +0400
commitd9adcfe6169c6c10059a670f2ed984908eb4e105 (patch)
tree25cfca25851214c1b744a07e67e9c120adfd7513 /core/Config.php
parent2788e1dad22533f3e0dbddbdd16c51251c4e130a (diff)
removed lots of trailing whitespace
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