Skip to content

Commit 378e721

Browse files
committed
issue #81 - remove white space before colon punctuation for SoapHeaders annotations
1 parent e12d75a commit 378e721

File tree

6 files changed

+364
-364
lines changed

6 files changed

+364
-364
lines changed

src/File/OperationAnnotationBlock.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ protected function addOperationMethodMetaInformations(PhpAnnotationBlock $annota
4848
$soapHeaders = $this->getMethod()->getMetaValue(TagHeader::META_SOAP_HEADERS, array());
4949
if (!empty($soapHeaderNames) && !empty($soapHeaderTypes) && !empty($soapHeaderNamespaces)) {
5050
$annotationBlock->addChild('Meta informations extracted from the WSDL')
51-
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaderNames : %s', implode(', ', $soapHeaderNames)), AbstractModelFile::ANNOTATION_LONG_LENGTH))
52-
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaderNamespaces : %s', implode(', ', $soapHeaderNamespaces)), AbstractModelFile::ANNOTATION_LONG_LENGTH))
53-
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaderTypes : %s', implode(', ', $this->getSoapHeaderTypesTypes($soapHeaderTypes))), AbstractModelFile::ANNOTATION_LONG_LENGTH))
54-
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaders : %s', implode(', ', $soapHeaders)), AbstractModelFile::ANNOTATION_LONG_LENGTH));
51+
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaderNames: %s', implode(', ', $soapHeaderNames)), AbstractModelFile::ANNOTATION_LONG_LENGTH))
52+
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaderNamespaces: %s', implode(', ', $soapHeaderNamespaces)), AbstractModelFile::ANNOTATION_LONG_LENGTH))
53+
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaderTypes: %s', implode(', ', $this->getSoapHeaderTypesTypes($soapHeaderTypes))), AbstractModelFile::ANNOTATION_LONG_LENGTH))
54+
->addChild(new PhpAnnotation(PhpAnnotation::NO_NAME, sprintf('- SOAPHeaders: %s', implode(', ', $soapHeaders)), AbstractModelFile::ANNOTATION_LONG_LENGTH));
5555
}
5656
FileUtils::defineModelAnnotationsFromWsdl($annotationBlock, $this->getMethod(), array(
5757
TagHeader::META_SOAP_HEADER_NAMES,

tests/resources/generated/ValidActonApiService.php

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ public function setSoapHeaderSessionHeader(\Api\StructType\ApiSessionHeader $ses
4141
/**
4242
* Method to call the operation originally named login
4343
* Meta informations extracted from the WSDL
44-
* - SOAPHeaderNames : ClusterHeader
45-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com
46-
* - SOAPHeaderTypes : \Api\StructType\ApiClusterHeader
47-
* - SOAPHeaders : required
44+
* - SOAPHeaderNames: ClusterHeader
45+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com
46+
* - SOAPHeaderTypes: \Api\StructType\ApiClusterHeader
47+
* - SOAPHeaders: required
4848
* - documentation: Login to the service. This must be the first call to obtain the SessionID for all subsequent API calls
4949
* @uses AbstractSoapClientBase::getSoapClient()
5050
* @uses AbstractSoapClientBase::setResult()
@@ -66,10 +66,10 @@ public function login(\Api\StructType\ApiLogin $parameter)
6666
/**
6767
* Method to call the operation originally named sendEmail
6868
* Meta informations extracted from the WSDL
69-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
70-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
71-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
72-
* - SOAPHeaders : optional, optional
69+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
70+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
71+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
72+
* - SOAPHeaders: optional, optional
7373
* - documentation: Schedule an email to be sent.
7474
* @uses AbstractSoapClientBase::getSoapClient()
7575
* @uses AbstractSoapClientBase::setResult()
@@ -91,10 +91,10 @@ public function sendEmail(\Api\StructType\ApiSendEmail $parameter)
9191
/**
9292
* Method to call the operation originally named list
9393
* Meta informations extracted from the WSDL
94-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
95-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
96-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
97-
* - SOAPHeaders : optional, required
94+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
95+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
96+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
97+
* - SOAPHeaders: optional, required
9898
* - documentation: Obtain a listing of different types of items in the system (e.g. CONTACT_LISTS)
9999
* @uses AbstractSoapClientBase::getSoapClient()
100100
* @uses AbstractSoapClientBase::setResult()
@@ -116,10 +116,10 @@ public function _list(\Api\StructType\ApiList $parameter)
116116
/**
117117
* Method to call the operation originally named uploadList
118118
* Meta informations extracted from the WSDL
119-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
120-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
121-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
122-
* - SOAPHeaders : optional, required
119+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
120+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
121+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
122+
* - SOAPHeaders: optional, required
123123
* - documentation: Upload a new contact list or merge records into an existing list.
124124
* @uses AbstractSoapClientBase::getSoapClient()
125125
* @uses AbstractSoapClientBase::setResult()
@@ -141,10 +141,10 @@ public function uploadList(\Api\StructType\ApiUploadList $parameter)
141141
/**
142142
* Method to call the operation originally named getUploadResult
143143
* Meta informations extracted from the WSDL
144-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
145-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
146-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
147-
* - SOAPHeaders : required, required
144+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
145+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
146+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
147+
* - SOAPHeaders: required, required
148148
* - documentation: Poll for the results of an asynchronous running upload/merge request
149149
* @uses AbstractSoapClientBase::getSoapClient()
150150
* @uses AbstractSoapClientBase::setResult()
@@ -166,10 +166,10 @@ public function getUploadResult(\Api\StructType\ApiGetUploadResultRequest $param
166166
/**
167167
* Method to call the operation originally named downloadList
168168
* Meta informations extracted from the WSDL
169-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
170-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
171-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
172-
* - SOAPHeaders : optional, required
169+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
170+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
171+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
172+
* - SOAPHeaders: optional, required
173173
* - documentation: Download the records of a contact list
174174
* @uses AbstractSoapClientBase::getSoapClient()
175175
* @uses AbstractSoapClientBase::setResult()
@@ -191,10 +191,10 @@ public function downloadList(\Api\StructType\ApiDownloadList $parameter)
191191
/**
192192
* Method to call the operation originally named messageReport
193193
* Meta informations extracted from the WSDL
194-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
195-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
196-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
197-
* - SOAPHeaders : optional, required
194+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
195+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
196+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
197+
* - SOAPHeaders: optional, required
198198
* @uses AbstractSoapClientBase::getSoapClient()
199199
* @uses AbstractSoapClientBase::setResult()
200200
* @uses AbstractSoapClientBase::getResult()
@@ -215,10 +215,10 @@ public function messageReport(\Api\StructType\ApiMessageReport $parameter)
215215
/**
216216
* Method to call the operation originally named deleteList
217217
* Meta informations extracted from the WSDL
218-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
219-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
220-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
221-
* - SOAPHeaders : optional, required
218+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
219+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
220+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
221+
* - SOAPHeaders: optional, required
222222
* @uses AbstractSoapClientBase::getSoapClient()
223223
* @uses AbstractSoapClientBase::setResult()
224224
* @uses AbstractSoapClientBase::getResult()

tests/resources/generated/ValidApiDelete.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ public function setSoapHeaderClusterHeader(\Api\StructType\ApiClusterHeader $clu
4141
/**
4242
* Method to call the operation originally named deleteList
4343
* Meta informations extracted from the WSDL
44-
* - SOAPHeaderNames : SessionHeader, ClusterHeader
45-
* - SOAPHeaderNamespaces : urn:api.actonsoftware.com, urn:api.actonsoftware.com
46-
* - SOAPHeaderTypes : \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
47-
* - SOAPHeaders : optional, required
44+
* - SOAPHeaderNames: SessionHeader, ClusterHeader
45+
* - SOAPHeaderNamespaces: urn:api.actonsoftware.com, urn:api.actonsoftware.com
46+
* - SOAPHeaderTypes: \Api\StructType\ApiSessionHeader, \Api\StructType\ApiClusterHeader
47+
* - SOAPHeaders: optional, required
4848
* @uses AbstractSoapClientBase::getSoapClient()
4949
* @uses AbstractSoapClientBase::setResult()
5050
* @uses AbstractSoapClientBase::getResult()

tests/resources/generated/ValidApiDo.php

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ public function setSoapHeaderRequesterCredentials(\Api\StructType\ApiCustomSecur
2828
/**
2929
* Method to call the operation originally named DoMobileCheckoutPayment
3030
* Meta informations extracted from the WSDL
31-
* - SOAPHeaderNames : RequesterCredentials
32-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
33-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
34-
* - SOAPHeaders : required
31+
* - SOAPHeaderNames: RequesterCredentials
32+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
33+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
34+
* - SOAPHeaders: required
3535
* @uses AbstractSoapClientBase::getSoapClient()
3636
* @uses AbstractSoapClientBase::setResult()
3737
* @uses AbstractSoapClientBase::getResult()
@@ -52,10 +52,10 @@ public function DoMobileCheckoutPayment(\Api\StructType\ApiDoMobileCheckoutPayme
5252
/**
5353
* Method to call the operation originally named DoExpressCheckoutPayment
5454
* Meta informations extracted from the WSDL
55-
* - SOAPHeaderNames : RequesterCredentials
56-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
57-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
58-
* - SOAPHeaders : required
55+
* - SOAPHeaderNames: RequesterCredentials
56+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
57+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
58+
* - SOAPHeaders: required
5959
* @uses AbstractSoapClientBase::getSoapClient()
6060
* @uses AbstractSoapClientBase::setResult()
6161
* @uses AbstractSoapClientBase::getResult()
@@ -76,10 +76,10 @@ public function DoExpressCheckoutPayment(\Api\StructType\ApiDoExpressCheckoutPay
7676
/**
7777
* Method to call the operation originally named DoUATPExpressCheckoutPayment
7878
* Meta informations extracted from the WSDL
79-
* - SOAPHeaderNames : RequesterCredentials
80-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
81-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
82-
* - SOAPHeaders : required
79+
* - SOAPHeaderNames: RequesterCredentials
80+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
81+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
82+
* - SOAPHeaders: required
8383
* @uses AbstractSoapClientBase::getSoapClient()
8484
* @uses AbstractSoapClientBase::setResult()
8585
* @uses AbstractSoapClientBase::getResult()
@@ -100,10 +100,10 @@ public function DoUATPExpressCheckoutPayment(\Api\StructType\ApiDoUATPExpressChe
100100
/**
101101
* Method to call the operation originally named DoDirectPayment
102102
* Meta informations extracted from the WSDL
103-
* - SOAPHeaderNames : RequesterCredentials
104-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
105-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
106-
* - SOAPHeaders : required
103+
* - SOAPHeaderNames: RequesterCredentials
104+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
105+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
106+
* - SOAPHeaders: required
107107
* @uses AbstractSoapClientBase::getSoapClient()
108108
* @uses AbstractSoapClientBase::setResult()
109109
* @uses AbstractSoapClientBase::getResult()
@@ -124,10 +124,10 @@ public function DoDirectPayment(\Api\StructType\ApiDoDirectPaymentReq $doDirectP
124124
/**
125125
* Method to call the operation originally named DoCancel
126126
* Meta informations extracted from the WSDL
127-
* - SOAPHeaderNames : RequesterCredentials
128-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
129-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
130-
* - SOAPHeaders : required
127+
* - SOAPHeaderNames: RequesterCredentials
128+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
129+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
130+
* - SOAPHeaders: required
131131
* @uses AbstractSoapClientBase::getSoapClient()
132132
* @uses AbstractSoapClientBase::setResult()
133133
* @uses AbstractSoapClientBase::getResult()
@@ -148,10 +148,10 @@ public function DoCancel(\Api\StructType\ApiDoCancelReq $doCancelRequest)
148148
/**
149149
* Method to call the operation originally named DoCapture
150150
* Meta informations extracted from the WSDL
151-
* - SOAPHeaderNames : RequesterCredentials
152-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
153-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
154-
* - SOAPHeaders : required
151+
* - SOAPHeaderNames: RequesterCredentials
152+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
153+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
154+
* - SOAPHeaders: required
155155
* @uses AbstractSoapClientBase::getSoapClient()
156156
* @uses AbstractSoapClientBase::setResult()
157157
* @uses AbstractSoapClientBase::getResult()
@@ -172,10 +172,10 @@ public function DoCapture(\Api\StructType\ApiDoCaptureReq $doCaptureRequest)
172172
/**
173173
* Method to call the operation originally named DoReauthorization
174174
* Meta informations extracted from the WSDL
175-
* - SOAPHeaderNames : RequesterCredentials
176-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
177-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
178-
* - SOAPHeaders : required
175+
* - SOAPHeaderNames: RequesterCredentials
176+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
177+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
178+
* - SOAPHeaders: required
179179
* @uses AbstractSoapClientBase::getSoapClient()
180180
* @uses AbstractSoapClientBase::setResult()
181181
* @uses AbstractSoapClientBase::getResult()
@@ -196,10 +196,10 @@ public function DoReauthorization(\Api\StructType\ApiDoReauthorizationReq $doRea
196196
/**
197197
* Method to call the operation originally named DoVoid
198198
* Meta informations extracted from the WSDL
199-
* - SOAPHeaderNames : RequesterCredentials
200-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
201-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
202-
* - SOAPHeaders : required
199+
* - SOAPHeaderNames: RequesterCredentials
200+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
201+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
202+
* - SOAPHeaders: required
203203
* @uses AbstractSoapClientBase::getSoapClient()
204204
* @uses AbstractSoapClientBase::setResult()
205205
* @uses AbstractSoapClientBase::getResult()
@@ -220,10 +220,10 @@ public function DoVoid(\Api\StructType\ApiDoVoidReq $doVoidRequest)
220220
/**
221221
* Method to call the operation originally named DoAuthorization
222222
* Meta informations extracted from the WSDL
223-
* - SOAPHeaderNames : RequesterCredentials
224-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
225-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
226-
* - SOAPHeaders : required
223+
* - SOAPHeaderNames: RequesterCredentials
224+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
225+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
226+
* - SOAPHeaders: required
227227
* @uses AbstractSoapClientBase::getSoapClient()
228228
* @uses AbstractSoapClientBase::setResult()
229229
* @uses AbstractSoapClientBase::getResult()
@@ -244,10 +244,10 @@ public function DoAuthorization(\Api\StructType\ApiDoAuthorizationReq $doAuthori
244244
/**
245245
* Method to call the operation originally named DoUATPAuthorization
246246
* Meta informations extracted from the WSDL
247-
* - SOAPHeaderNames : RequesterCredentials
248-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
249-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
250-
* - SOAPHeaders : required
247+
* - SOAPHeaderNames: RequesterCredentials
248+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
249+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
250+
* - SOAPHeaders: required
251251
* @uses AbstractSoapClientBase::getSoapClient()
252252
* @uses AbstractSoapClientBase::setResult()
253253
* @uses AbstractSoapClientBase::getResult()
@@ -268,10 +268,10 @@ public function DoUATPAuthorization(\Api\StructType\ApiDoUATPAuthorizationReq $d
268268
/**
269269
* Method to call the operation originally named DoReferenceTransaction
270270
* Meta informations extracted from the WSDL
271-
* - SOAPHeaderNames : RequesterCredentials
272-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
273-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
274-
* - SOAPHeaders : required
271+
* - SOAPHeaderNames: RequesterCredentials
272+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
273+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
274+
* - SOAPHeaders: required
275275
* @uses AbstractSoapClientBase::getSoapClient()
276276
* @uses AbstractSoapClientBase::setResult()
277277
* @uses AbstractSoapClientBase::getResult()
@@ -292,10 +292,10 @@ public function DoReferenceTransaction(\Api\StructType\ApiDoReferenceTransaction
292292
/**
293293
* Method to call the operation originally named DoNonReferencedCredit
294294
* Meta informations extracted from the WSDL
295-
* - SOAPHeaderNames : RequesterCredentials
296-
* - SOAPHeaderNamespaces : urn:ebay:api:PayPalAPI
297-
* - SOAPHeaderTypes : \Api\StructType\ApiCustomSecurityHeaderType
298-
* - SOAPHeaders : required
295+
* - SOAPHeaderNames: RequesterCredentials
296+
* - SOAPHeaderNamespaces: urn:ebay:api:PayPalAPI
297+
* - SOAPHeaderTypes: \Api\StructType\ApiCustomSecurityHeaderType
298+
* - SOAPHeaders: required
299299
* @uses AbstractSoapClientBase::getSoapClient()
300300
* @uses AbstractSoapClientBase::setResult()
301301
* @uses AbstractSoapClientBase::getResult()

0 commit comments

Comments
 (0)