You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
payment/config/routes.php

19 lines
521 B
PHTML

2 years ago
<?php
declare(strict_types=1);
2 years ago
use App\Controller\Payment\NotifyController;
2 years ago
use App\Controller\Payment\PageController;
use App\Controller\Payment\PayController;
use Hyperf\HttpServer\Router\Router;
Router::get('/favicon.ico', function () {
return 'sdfsd';
});
Router::addGroup('/payment',function () {
Router::post('/jsapi', [PayController::class, 'jsapi']);
2 years ago
Router::get('/page', [PageController::class, 'index']);
2 years ago
Router::addRoute(['GET', 'POST'], '/notify', [NotifyController::class, 'index']);
2 years ago
});