22 lines
362 B
PHP
22 lines
362 B
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Admin\User;
|
|
|
|
use App\Lib\AdminReturn;
|
|
use App\Service\Admin\BaseService;
|
|
|
|
class LoginService extends BaseService
|
|
{
|
|
public function handle(): array
|
|
{
|
|
return AdminReturn::success();
|
|
}
|
|
} |