feat : Proxy Remote Fail
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user