Enforce coding standards in Config.php and PConfig.php

This commit is contained in:
Hypolite Petovan 2016-10-17 16:53:37 -04:00
parent b50769b6d0
commit c168d7d4ca
2 changed files with 9 additions and 7 deletions

View file

@ -119,7 +119,7 @@ class PConfig {
* The value to store
* @return mixed Stored $value or false
*/
public static function set($uid,$family,$key,$value) {
public static function set($uid, $family, $key, $value) {
global $a;
@ -136,8 +136,9 @@ ON DUPLICATE KEY UPDATE `v` = '%s'",
dbesc($dbvalue),
dbesc($dbvalue)
);
if($ret)
if ($ret) {
return $value;
}
return $ret;
}