mirror of
https://github.com/danog/psalm.git
synced 2024-11-30 04:39:00 +01:00
Merge pull request #6927 from veewee/soap-stub-response
Invalid SoapClient::__doRequest() response type
This commit is contained in:
commit
e13c48a719
@ -12223,7 +12223,7 @@ return [
|
||||
'snmpwalkoid' => ['array|false', 'hostname'=>'string', 'community'=>'string', 'object_id'=>'string', 'timeout='=>'int', 'retries='=>'int'],
|
||||
'SoapClient::__call' => ['', 'function_name'=>'string', 'arguments'=>'array'],
|
||||
'SoapClient::__construct' => ['void', 'wsdl'=>'mixed', 'options='=>'array|null'],
|
||||
'SoapClient::__doRequest' => ['string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'bool'],
|
||||
'SoapClient::__doRequest' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'bool'],
|
||||
'SoapClient::__getCookies' => ['array'],
|
||||
'SoapClient::__getFunctions' => ['array'],
|
||||
'SoapClient::__getLastRequest' => ['string'],
|
||||
|
@ -110,8 +110,8 @@ return [
|
||||
'new' => ['string|int', 'empty='=>'bool'],
|
||||
],
|
||||
'SoapClient::__doRequest' => [
|
||||
'old' => ['string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'int'],
|
||||
'new' => ['string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'bool'],
|
||||
'old' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'int'],
|
||||
'new' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'bool'],
|
||||
],
|
||||
'XMLWriter::startAttributeNs' => [
|
||||
'old' => ['bool', 'prefix'=>'string', 'name'=>'string', 'namespace'=>'?string'],
|
||||
|
@ -6821,7 +6821,7 @@ return [
|
||||
'SoapClient::SoapClient' => ['object', 'wsdl'=>'mixed', 'options='=>'array|null'],
|
||||
'SoapClient::__call' => ['', 'function_name'=>'string', 'arguments'=>'array'],
|
||||
'SoapClient::__construct' => ['void', 'wsdl'=>'mixed', 'options='=>'array|null'],
|
||||
'SoapClient::__doRequest' => ['string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'int'],
|
||||
'SoapClient::__doRequest' => ['?string', 'request'=>'string', 'location'=>'string', 'action'=>'string', 'version'=>'int', 'one_way='=>'int'],
|
||||
'SoapClient::__getCookies' => ['array'],
|
||||
'SoapClient::__getFunctions' => ['array'],
|
||||
'SoapClient::__getLastRequest' => ['string'],
|
||||
|
Loading…
Reference in New Issue
Block a user