NullBackendFactory.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\Core\CacheFile
core/lib/Drupal/Core/Cache/NullBackendFactory.phpView source
<?php
namespace Drupal\Core\Cache;
class NullBackendFactory implements CacheFactoryInterface {
/**
* {@inheritdoc}
*/
public function get($bin) {
return new NullBackend($bin);
}
}
Classes
Name | Description |
---|---|
NullBackendFactory |