building-sign/vendor/league/flysystem-cached-adapter/src/Storage/Memory.php

23 lines
315 B
PHP
Raw Normal View History

2023-01-09 16:41:41 +08:00
<?php
namespace League\Flysystem\Cached\Storage;
class Memory extends AbstractCache
{
/**
* {@inheritdoc}
*/
public function save()
{
// There is nothing to save
}
/**
* {@inheritdoc}
*/
public function load()
{
// There is nothing to load
}
}