]> git.mxchange.org Git - friendica.git/commitdiff
Make PHP-CS happy again
authorPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 21:38:01 +0000 (22:38 +0100)
committerPhilipp <admin@philipp.info>
Thu, 29 Dec 2022 21:38:01 +0000 (22:38 +0100)
src/Core/KeyValueStorage/Type/DBKeyValueStorage.php

index 1c9e44ce8e8d0310fa88b4c657d44844d3ed03db..de8320c5ef1c1a6487197472f9e11090a60edd90 100644 (file)
@@ -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);