我想在soap服务中调用多个方法 以下是我的代码
class TestController extends Controller {
public function actions()
{
return [
'GetService' => 'mongosoft\soapserver\Action',
];
}
/**
* @soap
*/
public function GetMyService($a,$d)
{
}
public function GetMyService1($b,$d)
{} }
我想列出在GetService中编写的所有方法,即GetMyService($ a,$ b)和GetMyService1($ b,$ b)。请为此问题提供解决方案