Files
Socket/vendor/league/flysystem-cached-adapter/src/Storage/Memory.php
T
2026-01-28 23:48:20 +08:00

23 lines
315 B
PHP

<?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
}
}