* @param string $key The configuration key to set
* @param mixed $value The value to store
*
- * @return mixed Stored $value or false if the database update failed
+ * @return bool Operation success
*/
public static function set($family, $key, $value)
{
* @param string $key The configuration key to set
* @param mixed $value The value to store
*
- * @return mixed Stored $value or false if the database update failed
+ * @return bool Operation success
*/
public function set($cat, $k, $value);
* @param string $k The configuration key to set
* @param string $value The value to store
*
- * @return mixed Stored $value or false
+ * @return bool Operation success
*/
public function set($uid, $cat, $k, $value);
if ($result) {
$this->in_db[$cat][$k] = true;
- return $value;
}
return $result;
if ($result) {
$this->in_db[$uid][$cat][$k] = true;
- return $value;
}
return $result;
* @param string $key The configuration key to set
* @param string $value The value to store
*
- * @return mixed Stored $value or false
+ * @return bool Operation success
*/
public static function set($uid, $family, $key, $value)
{