Files
hyperf_service/app/Service/Api/Login/MobileCodeLoginService.php
2024-11-11 17:04:10 +08:00

23 lines
328 B
PHP

<?php
/**
* This service file is part of item.
*
* @author ctexthuang
* @contact ctexthuang@qq.com
*/
declare(strict_types=1);
namespace App\Service\Api\Login;
class MobileCodeLoginService extends LoginBaseService
{
public function handle()
{
return [];
}
protected function register() {}
}