public function AwsCacheAdapter::remove in Flysystem - S3 2.0.x
Same name and namespace in other branches
- 8 src/AwsCacheAdapter.php \Drupal\flysystem_s3\AwsCacheAdapter::remove()
File
- src/
AwsCacheAdapter.php, line 63
Class
- AwsCacheAdapter
- A Drupal cache adapter for use with the AWS PHP SDK.
Namespace
Drupal\flysystem_s3Code
public function remove($key) {
$this->cache
->delete($this->prefix . $key);
}