You are here

public function DrupalFlysystemCache::save in Flysystem 7

File

src/DrupalFlysystemCache.php, line 47
Contains DrupalFlysystemCache.

Class

DrupalFlysystemCache
An adapter that allows Flysystem to use Drupal's cache system.

Namespace

Drupal\flysystem

Code

public function save() {
  $cleaned = $this
    ->cleanContents($this->cache);
  cache_set($this->key, array(
    $cleaned,
    $this->complete,
  ));
}