KeyValueNullExpirableFactory.php 322 B

1234567891011121314151617
  1. <?php
  2. namespace Drupal\Core\KeyValueStore;
  3. /**
  4. * Defines the key/value store factory for the null backend.
  5. */
  6. class KeyValueNullExpirableFactory implements KeyValueExpirableFactoryInterface {
  7. /**
  8. * {@inheritdoc}
  9. */
  10. public function get($collection) {
  11. return new NullStorageExpirable($collection);
  12. }
  13. }