feat : Proxy Remote Fail

This commit is contained in:
2025-09-07 14:18:01 +08:00
parent 32bc27596e
commit 75af9debfb
7 changed files with 463 additions and 3 deletions

View File

@@ -8,6 +8,7 @@ use App\Service\Test\Proxy\AopService;
use App\Service\Test\Proxy\BasicSubjectService;
use App\Service\Test\Proxy\DynamicProxyService;
use App\Service\Test\Proxy\Payment\PaymentService;
use App\Service\Test\Proxy\RemoteService;
use App\Service\Test\Proxy\UserInfoService;
use App\Service\Test\Proxy\UserService;
use Hyperf\HttpServer\Annotation\Controller;
@@ -60,8 +61,12 @@ class ProxyController
return (new UserService)->handle();
}
public function remote()
/**
* @return array
*/
#[RequestMapping(path: 'remote', methods: 'GET')]
public function remote(): array
{
return (new RemoteService)->handle();
}
}