/**
* This class is responsible for the user-specific configuration values in Friendica
- * The values are set through the Config-DB-Table (per Config-DB-adapter @see Adapter\IPConfigAdapter )
+ * The values are set through the Config-DB-Table (per Config-DB-model @see Model\Config\PConfig)
*
* The configuration cache (@see Cache\PConfigCache ) is used for temporary caching of database calls. This will
* increase the performance.
*
* Get a particular user's config value from the given category ($cat)
* and the $key with the $uid from a cached storage either from the $this->configAdapter
- * (@param int $uid The user_id
+ * (@see IConfigAdapter ) or from the $this->configCache (@see PConfigCache ).
*
+ * @param int $uid The user_id
* @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)
* @param boolean $refresh optional, If true the config is loaded from the db and not from the cache (default: false)
*
* @return mixed Stored value or null if it does not exist
- * @see IConfigAdapter ) or from the $this->configCache (@see PConfigCache ).
- *
*/
abstract public function get(int $uid, string $cat, string $key, $default_value = null, bool $refresh = false);
* Deletes the given key from the users's configuration.
*
* Removes the configured value from the stored cache in $this->configCache
- * (@param int $uid The user_id
+ * (@see ConfigCache ) and removes it from the database (@see IConfigAdapter )
+ * with the given $uid.
*
+ * @param int $uid The user_id
* @param string $cat The category of the configuration value
* @param string $key The configuration key to delete
*
* @return bool
- * @see ConfigCache ) and removes it from the database (@see IConfigAdapter )
- * with the given $uid.
- *
*/
abstract public function delete(int $uid, string $cat, string $key);
}