23 lines
328 B
PHP
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() {}
|
|
} |