function MemoryBackendTest::createCacheBackend

Same name and namespace in other branches
  1. 11.x core/tests/Drupal/KernelTests/Core/Cache/MemoryBackendTest.php \Drupal\KernelTests\Core\Cache\MemoryBackendTest::createCacheBackend()

Creates a new instance of MemoryBackend.

Return value

\Drupal\Core\Cache\CacheBackendInterface A new MemoryBackend object.

File

core/tests/Drupal/KernelTests/Core/Cache/MemoryBackendTest.php, line 20

Class

MemoryBackendTest
Unit test of the memory cache backend using the generic cache unit test base.

Namespace

Drupal\KernelTests\Core\Cache

Code

protected function createCacheBackend($bin) {
  $backend = new MemoryBackend();
  \Drupal::service('cache_tags.invalidator')->addInvalidator($backend);
  return $backend;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.