Backup of db before drupal security update
[yaffs-website] / web / core / lib / Drupal / Core / KeyValueStore / KeyValueNullExpirableFactory.php
1 <?php
2
3 namespace Drupal\Core\KeyValueStore;
4
5 /**
6  * Defines the key/value store factory for the null backend.
7  */
8 class KeyValueNullExpirableFactory implements KeyValueExpirableFactoryInterface {
9
10   /**
11    * {@inheritdoc}
12    */
13   public function get($collection) {
14     return new NullStorageExpirable($collection);
15   }
16
17 }