Upgraded drupal core with security updates
[yaffs-website] / web / core / lib / Drupal / Core / Cache / NullBackendFactory.php
1 <?php
2
3 namespace Drupal\Core\Cache;
4
5 class NullBackendFactory implements CacheFactoryInterface {
6
7   /**
8    * {@inheritdoc}
9    */
10   public function get($bin) {
11     return new NullBackend($bin);
12   }
13
14 }