From: Philipp Date: Thu, 29 Dec 2022 21:38:01 +0000 (+0100) Subject: Make PHP-CS happy again X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a330a3c22d215637c01c5112a37b5af53a5d9e66;p=friendica.git Make PHP-CS happy again --- diff --git a/src/Core/KeyValueStorage/Type/DBKeyValueStorage.php b/src/Core/KeyValueStorage/Type/DBKeyValueStorage.php index 1c9e44ce8e..de8320c5ef 100644 --- a/src/Core/KeyValueStorage/Type/DBKeyValueStorage.php +++ b/src/Core/KeyValueStorage/Type/DBKeyValueStorage.php @@ -90,7 +90,7 @@ class DBKeyValueStorage extends AbstractKeyValueStorage $dbValue = ValueConversion::toDbValue($value); $return = $this->database->update(self::DB_KEY_VALUE_TABLE, [ - 'v' => $dbValue, + 'v' => $dbValue, 'updated_at' => time() ], ['k' => $offset], true);