Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / lib / Drupal / Core / KeyValueStore / DatabaseStorageExpirable.php
index c6514962d6371029d28881416578b71808836555..aab333acde6359c50bae536e9630b0dfd1722dbf 100644 (file)
@@ -63,7 +63,7 @@ class DatabaseStorageExpirable extends DatabaseStorage implements KeyValueStoreE
       'SELECT name, value FROM {' . $this->connection->escapeTable($this->table) . '} WHERE collection = :collection AND expire > :now',
       [
         ':collection' => $this->collection,
-        ':now' => REQUEST_TIME
+        ':now' => REQUEST_TIME,
       ])->fetchAllKeyed();
     return array_map([$this->serializer, 'decode'], $values);
   }