X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FConfig.php;h=4bf9c5b11d2d4aa96495516edfc38dc94c098f25;hb=9b927fa33375b5cca1e90442f990e3bff9225b20;hp=44556a6017dcfda80cac4b9b9b0b9c4ab556209b;hpb=b47fc97b06ef1a0939f0f2d05e33b36288fa8303;p=friendica.git diff --git a/src/Core/Config.php b/src/Core/Config.php index 44556a6017..4bf9c5b11d 100644 --- a/src/Core/Config.php +++ b/src/Core/Config.php @@ -48,8 +48,6 @@ class Config * @brief Get a particular user's config variable given the category name * ($family) and a key. * - * Note: Please do not store booleans - convert to 0/1 integer values! - * * @param string $cat The category of the configuration value * @param string $key The configuration key to query * @param mixed $default_value optional, The value to return if key is not set (default: null) @@ -67,6 +65,8 @@ class Config * * Stores a config value ($value) in the category ($cat) under the key ($key) * + * Note: Please do not store booleans - convert to 0/1 integer values! + * * @param string $cat The category of the configuration value * @param string $key The configuration key to set * @param mixed $value The value to store