22 lines
374 B
PHP
22 lines
374 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;
|
|
|
|
use App\Service\BaseService;
|
|
|
|
class AdapterTestService extends TestBaseService
|
|
{
|
|
public function handle(): array
|
|
{
|
|
return $this->return->success();
|
|
}
|
|
} |