25 lines
422 B
PHP
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();
|
|
}
|
|
} |