21 lines
396 B
PHP
21 lines
396 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Controller\Api;
|
|
|
|
use Hyperf\HttpServer\Annotation\Controller;
|
|
use Hyperf\HttpServer\Annotation\RequestMapping;
|
|
use Hyperf\Validation\Annotation\Scene;
|
|
|
|
#[Controller(prefix: 'api/user')]
|
|
class UserController
|
|
{
|
|
#[RequestMapping(path: 'bind/phone',methods: 'post')]
|
|
#[Scene(scene: 'bind_phone')]
|
|
public function bind_phone()
|
|
{
|
|
|
|
}
|
|
}
|