From dc621b24cd182bf245e99b99272fd26a5832ba1c Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Sun, 6 Mar 2016 21:00:00 +0100 Subject: [PATCH] Improve class docs of Pico::loadConfig() --- lib/Pico.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/Pico.php b/lib/Pico.php index 25e4938..12bd993 100644 --- a/lib/Pico.php +++ b/lib/Pico.php @@ -509,12 +509,12 @@ class Pico * Loads the config.php and any *.config.php from Pico::$configDir * * After loading the {@path "config/config.php"}, Pico proceeds with any - * existing {@path "config/*.config.php"} in alphabetical order. The file - * order is crucial: Config values which has been set already, cannot be - * overwritten by a succeeding file. This is also true for arrays, - * i.e. when specifying `$config['test'] = array('foo' => 'bar')` in - * `config/a.config.php` and `$config['test'] = array('baz' => 42)` in - * `config/b.config.php`, `$config['test']['baz']` will be undefined! + * existing `config/*.config.php` in alphabetical order. The file order is + * crucial: Config values which has been set already, cannot be overwritten + * by a succeeding file. This is also true for arrays, i.e. when specifying + * `$config['test'] = array('foo' => 'bar')` in `config/a.config.php` and + * `$config['test'] = array('baz' => 42)` in `config/b.config.php`, + * `$config['test']['baz']` will be undefined! * * @see Pico::setConfig() * @see Pico::getConfig()