You are here

public function LaravelCacheStoreAdapter::__construct in Markdown 8.2

File

src/Util/LaravelCacheStoreAdapter.php, line 30

Class

LaravelCacheStoreAdapter
Adapter for integrating Drupal cache with Laravel.

Namespace

Drupal\markdown\Util

Code

public function __construct(CacheBackendInterface $cacheBackend, $prefix = NULL) {
  $this->cache = $cacheBackend;
  $this->prefix = $prefix;
}