Files
hyperf_test/app/Service/Test/Adapter/Cache/FileCacheService.php
2025-09-05 14:12:56 +08:00

24 lines
435 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
* @web_site https://ctexthuang.com
*/
declare(strict_types=1);
namespace App\Service\Test\Adapter\Cache;
class FileCacheService
{
public function fetch(string $key): array
{
return [
'key' => $key,
'cache' => 'file',
'msg' => 'file cache fetch success'
];
}
}