让我们想象一下在PHP中使用SoapClient的标准代码:
$client = new SoapClient(/* arguments here */);
$result1 = $client->invokeSomeApiMethod($arg1, $arg2);
$result2 = $client->invokeSomeOtherApiMethod($arg3);
我想知道,有没有办法为IDE指定特定服务的API(我使用PhpStorm)以获得代码完成,基本参数验证等等,以便IDE知道对于这个特定的SoapClient实例,invokeSomeApiMethod确实存在,它接受一些参数列表。
我目前看到的唯一方法是声明一个类,其接口将与Web服务的API相对应,并为SoapClient实例创建一个注释:
class SomeApi extends SoapClient
{
public function invokeSomeApiMethod($arg1, $arg2)
{
}
public function invokeSomeOtherApiMethod($arg3, $arg4 = null)
{
}
}
/** @var SomeApi $client */
$client = new SoapClient(/* arguments here */);
但对我来说这看起来很奇怪。也许你们有人使用其他任何方法?