diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-07-08 18:01:32 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-07-08 18:01:32 +0200 |
commit | abe9abab997a01c3784a475d4cd16068647ed71d (patch) | |
tree | 367a6337c6c40e7de5d0a026c69dece9c8a31fc2 /lib/config.php | |
parent | 52553c64ed59f4a30ad42586abd8e06a8446ecd9 (diff) | |
download | nextcloud-server-abe9abab997a01c3784a475d4cd16068647ed71d.tar.gz nextcloud-server-abe9abab997a01c3784a475d4cd16068647ed71d.zip |
Add constructor documentation
Diffstat (limited to 'lib/config.php')
-rw-r--r-- | lib/config.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/config.php b/lib/config.php index c01cb4e152f..b03302ef09d 100644 --- a/lib/config.php +++ b/lib/config.php @@ -49,6 +49,9 @@ class Config { protected $debugMode; + /** + * @param $configDir path to the config dir, needs to end with '/' + */ public function __construct($configDir) { $this->configDir = $configDir; $this->configFilename = $this->configDir.'config.php'; |