NullBackendFactory.php 200 B

1234567891011121314
  1. <?php
  2. namespace Drupal\Core\Cache;
  3. class NullBackendFactory implements CacheFactoryInterface {
  4. /**
  5. * {@inheritdoc}
  6. */
  7. public function get($bin) {
  8. return new NullBackend($bin);
  9. }
  10. }