Files
hyperf_service/app/Controller/Api/PayController.php
2025-01-22 17:58:36 +08:00

23 lines
414 B
PHP

<?php
declare(strict_types=1);
namespace App\Controller\Api;
use App\Controller\AbstractController;
use App\Middleware\Api\JwtAuthMiddleware;
use Hyperf\HttpServer\Annotation\Controller;
use Hyperf\HttpServer\Annotation\Middlewares;
#[Controller(prefix: 'api/order')]
#[Middlewares([
JwtAuthMiddleware::class,
])]
class PayController extends AbstractController
{
public function index()
{
}
}