Files
hyperf_test/app/Service/Test/Adapter/CacheService.php
ctexthuang 80ba5dcbf8
Some checks failed
Build Docker / build (push) Has been cancelled
feat : cache Adapter unfinished
2025-09-04 23:16:07 +08:00

25 lines
422 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;
use App\Service\Test\TestBaseService;
class CacheService extends TestBaseService
{
/**
* @return array
*/
public function handle(): array
{
return $this->return->success();
}
}