You are here

public function LaravelCacheStoreAdapter::flush in Markdown 8.2

File

src/Util/LaravelCacheStoreAdapter.php, line 48

Class

LaravelCacheStoreAdapter
Adapter for integrating Drupal cache with Laravel.

Namespace

Drupal\markdown\Util

Code

public function flush() {
  $this->cache
    ->deleteAll();
  return TRUE;
}