mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 05:52:43 +08:00
23 lines
315 B
PHP
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
|
|
}
|
|
}
|