Total Complexity | 94 |
Total Lines | 1181 |
Duplicated Lines | 0 % |
Changes | 0 |
Complex classes like Dutch often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Dutch, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
12 | class Dutch extends SoapClientBase |
||
13 | { |
||
14 | /** |
||
15 | * Sets the HeaderLogin SoapHeader param |
||
16 | * @uses SoapClientBase::setSoapHeader() |
||
17 | * @param \Webservices\StructType\HeaderLoginType $headerLogin |
||
18 | * @param string $nameSpace |
||
19 | * @param bool $mustUnderstand |
||
20 | * @param string $actor |
||
21 | * @return bool |
||
22 | */ |
||
23 | public function setSoapHeaderHeaderLogin(\Webservices\StructType\HeaderLoginType $headerLogin, $nameSpace = 'http://www.webservices.nl/soap/', $mustUnderstand = false, $actor = null) |
||
24 | { |
||
25 | return $this->setSoapHeader($nameSpace, 'HeaderLogin', $headerLogin, $mustUnderstand, $actor); |
||
26 | } |
||
27 | /** |
||
28 | * Sets the HeaderAuthenticate SoapHeader param |
||
29 | * @uses SoapClientBase::setSoapHeader() |
||
30 | * @param \Webservices\StructType\HeaderAuthenticateType $headerAuthenticate |
||
31 | * @param string $nameSpace |
||
32 | * @param bool $mustUnderstand |
||
33 | * @param string $actor |
||
34 | * @return bool |
||
35 | */ |
||
36 | public function setSoapHeaderHeaderAuthenticate(\Webservices\StructType\HeaderAuthenticateType $headerAuthenticate, $nameSpace = 'http://www.webservices.nl/soap/', $mustUnderstand = false, $actor = null) |
||
37 | { |
||
38 | return $this->setSoapHeader($nameSpace, 'HeaderAuthenticate', $headerAuthenticate, $mustUnderstand, $actor); |
||
39 | } |
||
40 | /** |
||
41 | * Method to call the operation originally named dutchAddressRangePostcodeSearch |
||
42 | * Meta informations extracted from the WSDL |
||
43 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
44 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
45 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
46 | * - SOAPHeaders: required, required |
||
47 | * - documentation: Validate and complete an address based on postcode and house number. |
||
48 | * @uses SoapClientBase::getSoapClient() |
||
49 | * @uses SoapClientBase::setResult() |
||
50 | * @uses SoapClientBase::getResult() |
||
51 | * @uses SoapClientBase::saveLastError() |
||
52 | * @param \Webservices\StructType\DutchAddressRangePostcodeSearchRequestType $parameters |
||
53 | * @return \Webservices\StructType\DutchAddressRangePostcodeSearchResponseType|bool |
||
54 | */ |
||
55 | public function dutchAddressRangePostcodeSearch(\Webservices\StructType\DutchAddressRangePostcodeSearchRequestType $parameters) |
||
56 | { |
||
57 | try { |
||
58 | $this->setResult(self::getSoapClient()->dutchAddressRangePostcodeSearch($parameters)); |
||
59 | return $this->getResult(); |
||
60 | } catch (\SoapFault $soapFault) { |
||
61 | $this->saveLastError(__METHOD__, $soapFault); |
||
62 | return false; |
||
63 | } |
||
64 | } |
||
65 | /** |
||
66 | * Method to call the operation originally named dutchBusinessGetDossier |
||
67 | * Meta informations extracted from the WSDL |
||
68 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
69 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
70 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
71 | * - SOAPHeaders: required, required |
||
72 | * - documentation: Retrieve data on a business establishment |
||
73 | * @uses SoapClientBase::getSoapClient() |
||
74 | * @uses SoapClientBase::setResult() |
||
75 | * @uses SoapClientBase::getResult() |
||
76 | * @uses SoapClientBase::saveLastError() |
||
77 | * @param \Webservices\StructType\DutchBusinessGetDossierRequestType $parameters |
||
78 | * @return \Webservices\StructType\DutchBusinessGetDossierResponseType|bool |
||
79 | */ |
||
80 | public function dutchBusinessGetDossier(\Webservices\StructType\DutchBusinessGetDossierRequestType $parameters) |
||
81 | { |
||
82 | try { |
||
83 | $this->setResult(self::getSoapClient()->dutchBusinessGetDossier($parameters)); |
||
84 | return $this->getResult(); |
||
85 | } catch (\SoapFault $soapFault) { |
||
86 | $this->saveLastError(__METHOD__, $soapFault); |
||
87 | return false; |
||
88 | } |
||
89 | } |
||
90 | /** |
||
91 | * Method to call the operation originally named dutchBusinessGetDossierV2 |
||
92 | * Meta informations extracted from the WSDL |
||
93 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
94 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
95 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
96 | * - SOAPHeaders: required, required |
||
97 | * - documentation: Retrieve data on a business establishment |
||
98 | * @uses SoapClientBase::getSoapClient() |
||
99 | * @uses SoapClientBase::setResult() |
||
100 | * @uses SoapClientBase::getResult() |
||
101 | * @uses SoapClientBase::saveLastError() |
||
102 | * @param \Webservices\StructType\DutchBusinessGetDossierV2RequestType $parameters |
||
103 | * @return \Webservices\StructType\DutchBusinessGetDossierV2ResponseType|bool |
||
104 | */ |
||
105 | public function dutchBusinessGetDossierV2(\Webservices\StructType\DutchBusinessGetDossierV2RequestType $parameters) |
||
106 | { |
||
107 | try { |
||
108 | $this->setResult(self::getSoapClient()->dutchBusinessGetDossierV2($parameters)); |
||
109 | return $this->getResult(); |
||
110 | } catch (\SoapFault $soapFault) { |
||
111 | $this->saveLastError(__METHOD__, $soapFault); |
||
112 | return false; |
||
113 | } |
||
114 | } |
||
115 | /** |
||
116 | * Method to call the operation originally named dutchBusinessGetDossierV3 |
||
117 | * Meta informations extracted from the WSDL |
||
118 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
119 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
120 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
121 | * - SOAPHeaders: required, required |
||
122 | * - documentation: Retrieve data on a business establishment |
||
123 | * @uses SoapClientBase::getSoapClient() |
||
124 | * @uses SoapClientBase::setResult() |
||
125 | * @uses SoapClientBase::getResult() |
||
126 | * @uses SoapClientBase::saveLastError() |
||
127 | * @param \Webservices\StructType\DutchBusinessGetDossierV3RequestType $parameters |
||
128 | * @return \Webservices\StructType\DutchBusinessGetDossierV3ResponseType|bool |
||
129 | */ |
||
130 | public function dutchBusinessGetDossierV3(\Webservices\StructType\DutchBusinessGetDossierV3RequestType $parameters) |
||
131 | { |
||
132 | try { |
||
133 | $this->setResult(self::getSoapClient()->dutchBusinessGetDossierV3($parameters)); |
||
134 | return $this->getResult(); |
||
135 | } catch (\SoapFault $soapFault) { |
||
136 | $this->saveLastError(__METHOD__, $soapFault); |
||
137 | return false; |
||
138 | } |
||
139 | } |
||
140 | /** |
||
141 | * Method to call the operation originally named dutchBusinessGetSBI |
||
142 | * Meta informations extracted from the WSDL |
||
143 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
144 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
145 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
146 | * - SOAPHeaders: required, required |
||
147 | * - documentation: Retrieve SBI Information on a company |
||
148 | * @uses SoapClientBase::getSoapClient() |
||
149 | * @uses SoapClientBase::setResult() |
||
150 | * @uses SoapClientBase::getResult() |
||
151 | * @uses SoapClientBase::saveLastError() |
||
152 | * @param \Webservices\StructType\DutchBusinessGetSBIRequestType $parameters |
||
153 | * @return \Webservices\StructType\DutchBusinessGetSBIResponseType|bool |
||
154 | */ |
||
155 | public function dutchBusinessGetSBI(\Webservices\StructType\DutchBusinessGetSBIRequestType $parameters) |
||
156 | { |
||
157 | try { |
||
158 | $this->setResult(self::getSoapClient()->dutchBusinessGetSBI($parameters)); |
||
159 | return $this->getResult(); |
||
160 | } catch (\SoapFault $soapFault) { |
||
161 | $this->saveLastError(__METHOD__, $soapFault); |
||
162 | return false; |
||
163 | } |
||
164 | } |
||
165 | /** |
||
166 | * Method to call the operation originally named dutchBusinessGetVatNumber |
||
167 | * Meta informations extracted from the WSDL |
||
168 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
169 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
170 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
171 | * - SOAPHeaders: required, required |
||
172 | * - documentation: Retrieve data on a business establishment |
||
173 | * @uses SoapClientBase::getSoapClient() |
||
174 | * @uses SoapClientBase::setResult() |
||
175 | * @uses SoapClientBase::getResult() |
||
176 | * @uses SoapClientBase::saveLastError() |
||
177 | * @param \Webservices\StructType\DutchBusinessGetVatNumberRequestType $parameters |
||
178 | * @return \Webservices\StructType\DutchBusinessGetVatNumberResponseType|bool |
||
179 | */ |
||
180 | public function dutchBusinessGetVatNumber(\Webservices\StructType\DutchBusinessGetVatNumberRequestType $parameters) |
||
181 | { |
||
182 | try { |
||
183 | $this->setResult(self::getSoapClient()->dutchBusinessGetVatNumber($parameters)); |
||
184 | return $this->getResult(); |
||
185 | } catch (\SoapFault $soapFault) { |
||
186 | $this->saveLastError(__METHOD__, $soapFault); |
||
187 | return false; |
||
188 | } |
||
189 | } |
||
190 | /** |
||
191 | * Method to call the operation originally named dutchBusinessGetPositions |
||
192 | * Meta informations extracted from the WSDL |
||
193 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
194 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
195 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
196 | * - SOAPHeaders: required, required |
||
197 | * - documentation: Retrieve position data on a business establishment |
||
198 | * @uses SoapClientBase::getSoapClient() |
||
199 | * @uses SoapClientBase::setResult() |
||
200 | * @uses SoapClientBase::getResult() |
||
201 | * @uses SoapClientBase::saveLastError() |
||
202 | * @param \Webservices\StructType\DutchBusinessGetPositionsRequestType $parameters |
||
203 | * @return \Webservices\StructType\DutchBusinessGetPositionsResponseType|bool |
||
204 | */ |
||
205 | public function dutchBusinessGetPositions(\Webservices\StructType\DutchBusinessGetPositionsRequestType $parameters) |
||
206 | { |
||
207 | try { |
||
208 | $this->setResult(self::getSoapClient()->dutchBusinessGetPositions($parameters)); |
||
209 | return $this->getResult(); |
||
210 | } catch (\SoapFault $soapFault) { |
||
211 | $this->saveLastError(__METHOD__, $soapFault); |
||
212 | return false; |
||
213 | } |
||
214 | } |
||
215 | /** |
||
216 | * Method to call the operation originally named dutchBusinessGetLegalEntity |
||
217 | * Meta informations extracted from the WSDL |
||
218 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
219 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
220 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
221 | * - SOAPHeaders: required, required |
||
222 | * - documentation: Retrieve legal entity data on a business establishment |
||
223 | * @uses SoapClientBase::getSoapClient() |
||
224 | * @uses SoapClientBase::setResult() |
||
225 | * @uses SoapClientBase::getResult() |
||
226 | * @uses SoapClientBase::saveLastError() |
||
227 | * @param \Webservices\StructType\DutchBusinessGetLegalEntityRequestType $parameters |
||
228 | * @return \Webservices\StructType\DutchBusinessGetLegalEntityResponseType|bool |
||
229 | */ |
||
230 | public function dutchBusinessGetLegalEntity(\Webservices\StructType\DutchBusinessGetLegalEntityRequestType $parameters) |
||
231 | { |
||
232 | try { |
||
233 | $this->setResult(self::getSoapClient()->dutchBusinessGetLegalEntity($parameters)); |
||
234 | return $this->getResult(); |
||
235 | } catch (\SoapFault $soapFault) { |
||
236 | $this->saveLastError(__METHOD__, $soapFault); |
||
237 | return false; |
||
238 | } |
||
239 | } |
||
240 | /** |
||
241 | * Method to call the operation originally named dutchBusinessGetOrganizationTree |
||
242 | * Meta informations extracted from the WSDL |
||
243 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
244 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
245 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
246 | * - SOAPHeaders: required, required |
||
247 | * - documentation: Retrieve the organization tree of a company |
||
248 | * @uses SoapClientBase::getSoapClient() |
||
249 | * @uses SoapClientBase::setResult() |
||
250 | * @uses SoapClientBase::getResult() |
||
251 | * @uses SoapClientBase::saveLastError() |
||
252 | * @param \Webservices\StructType\DutchBusinessGetOrganizationTreeRequestType $parameters |
||
253 | * @return \Webservices\StructType\DutchBusinessGetOrganizationTreeResponseType|bool |
||
254 | */ |
||
255 | public function dutchBusinessGetOrganizationTree(\Webservices\StructType\DutchBusinessGetOrganizationTreeRequestType $parameters) |
||
256 | { |
||
257 | try { |
||
258 | $this->setResult(self::getSoapClient()->dutchBusinessGetOrganizationTree($parameters)); |
||
259 | return $this->getResult(); |
||
260 | } catch (\SoapFault $soapFault) { |
||
261 | $this->saveLastError(__METHOD__, $soapFault); |
||
262 | return false; |
||
263 | } |
||
264 | } |
||
265 | /** |
||
266 | * Method to call the operation originally named dutchBusinessSearchDossierNumber |
||
267 | * Meta informations extracted from the WSDL |
||
268 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
269 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
270 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
271 | * - SOAPHeaders: required, required |
||
272 | * - documentation: Search for business establishments using a known identifier |
||
273 | * @uses SoapClientBase::getSoapClient() |
||
274 | * @uses SoapClientBase::setResult() |
||
275 | * @uses SoapClientBase::getResult() |
||
276 | * @uses SoapClientBase::saveLastError() |
||
277 | * @param \Webservices\StructType\DutchBusinessSearchDossierNumberRequestType $parameters |
||
278 | * @return \Webservices\StructType\DutchBusinessSearchDossierNumberResponseType|bool |
||
279 | */ |
||
280 | public function dutchBusinessSearchDossierNumber(\Webservices\StructType\DutchBusinessSearchDossierNumberRequestType $parameters) |
||
281 | { |
||
282 | try { |
||
283 | $this->setResult(self::getSoapClient()->dutchBusinessSearchDossierNumber($parameters)); |
||
284 | return $this->getResult(); |
||
285 | } catch (\SoapFault $soapFault) { |
||
286 | $this->saveLastError(__METHOD__, $soapFault); |
||
287 | return false; |
||
288 | } |
||
289 | } |
||
290 | /** |
||
291 | * Method to call the operation originally named dutchBusinessSearchParametersV2 |
||
292 | * Meta informations extracted from the WSDL |
||
293 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
294 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
295 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
296 | * - SOAPHeaders: required, required |
||
297 | * - documentation: Find business establishments using a variety of parameters |
||
298 | * @uses SoapClientBase::getSoapClient() |
||
299 | * @uses SoapClientBase::setResult() |
||
300 | * @uses SoapClientBase::getResult() |
||
301 | * @uses SoapClientBase::saveLastError() |
||
302 | * @param \Webservices\StructType\DutchBusinessSearchParametersV2RequestType $parameters |
||
303 | * @return \Webservices\StructType\DutchBusinessSearchParametersV2ResponseType|bool |
||
304 | */ |
||
305 | public function dutchBusinessSearchParametersV2(\Webservices\StructType\DutchBusinessSearchParametersV2RequestType $parameters) |
||
306 | { |
||
307 | try { |
||
308 | $this->setResult(self::getSoapClient()->dutchBusinessSearchParametersV2($parameters)); |
||
309 | return $this->getResult(); |
||
310 | } catch (\SoapFault $soapFault) { |
||
311 | $this->saveLastError(__METHOD__, $soapFault); |
||
312 | return false; |
||
313 | } |
||
314 | } |
||
315 | /** |
||
316 | * Method to call the operation originally named dutchBusinessSearch |
||
317 | * Meta informations extracted from the WSDL |
||
318 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
319 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
320 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
321 | * - SOAPHeaders: required, required |
||
322 | * - documentation: Find business establishments using a variety of parameters |
||
323 | * @uses SoapClientBase::getSoapClient() |
||
324 | * @uses SoapClientBase::setResult() |
||
325 | * @uses SoapClientBase::getResult() |
||
326 | * @uses SoapClientBase::saveLastError() |
||
327 | * @param \Webservices\StructType\DutchBusinessSearchRequestType $parameters |
||
328 | * @return \Webservices\StructType\DutchBusinessSearchResponseType|bool |
||
329 | */ |
||
330 | public function dutchBusinessSearch(\Webservices\StructType\DutchBusinessSearchRequestType $parameters) |
||
331 | { |
||
332 | try { |
||
333 | $this->setResult(self::getSoapClient()->dutchBusinessSearch($parameters)); |
||
334 | return $this->getResult(); |
||
335 | } catch (\SoapFault $soapFault) { |
||
336 | $this->saveLastError(__METHOD__, $soapFault); |
||
337 | return false; |
||
338 | } |
||
339 | } |
||
340 | /** |
||
341 | * Method to call the operation originally named dutchBusinessSearchEstablishments |
||
342 | * Meta informations extracted from the WSDL |
||
343 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
344 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
345 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
346 | * - SOAPHeaders: required, required |
||
347 | * - documentation: Search for business establishments using a known identifier |
||
348 | * @uses SoapClientBase::getSoapClient() |
||
349 | * @uses SoapClientBase::setResult() |
||
350 | * @uses SoapClientBase::getResult() |
||
351 | * @uses SoapClientBase::saveLastError() |
||
352 | * @param \Webservices\StructType\DutchBusinessSearchEstablishmentsRequestType $parameters |
||
353 | * @return \Webservices\StructType\DutchBusinessSearchEstablishmentsResponseType|bool |
||
354 | */ |
||
355 | public function dutchBusinessSearchEstablishments(\Webservices\StructType\DutchBusinessSearchEstablishmentsRequestType $parameters) |
||
356 | { |
||
357 | try { |
||
358 | $this->setResult(self::getSoapClient()->dutchBusinessSearchEstablishments($parameters)); |
||
359 | return $this->getResult(); |
||
360 | } catch (\SoapFault $soapFault) { |
||
361 | $this->saveLastError(__METHOD__, $soapFault); |
||
362 | return false; |
||
363 | } |
||
364 | } |
||
365 | /** |
||
366 | * Method to call the operation originally named dutchBusinessSearchPostcode |
||
367 | * Meta informations extracted from the WSDL |
||
368 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
369 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
370 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
371 | * - SOAPHeaders: required, required |
||
372 | * - documentation: Find business establishments based on postcode and house number |
||
373 | * @uses SoapClientBase::getSoapClient() |
||
374 | * @uses SoapClientBase::setResult() |
||
375 | * @uses SoapClientBase::getResult() |
||
376 | * @uses SoapClientBase::saveLastError() |
||
377 | * @param \Webservices\StructType\DutchBusinessSearchPostcodeRequestType $parameters |
||
378 | * @return \Webservices\StructType\DutchBusinessSearchPostcodeResponseType|bool |
||
379 | */ |
||
380 | public function dutchBusinessSearchPostcode(\Webservices\StructType\DutchBusinessSearchPostcodeRequestType $parameters) |
||
381 | { |
||
382 | try { |
||
383 | $this->setResult(self::getSoapClient()->dutchBusinessSearchPostcode($parameters)); |
||
384 | return $this->getResult(); |
||
385 | } catch (\SoapFault $soapFault) { |
||
386 | $this->saveLastError(__METHOD__, $soapFault); |
||
387 | return false; |
||
388 | } |
||
389 | } |
||
390 | /** |
||
391 | * Method to call the operation originally named dutchBusinessSearchSelection |
||
392 | * Meta informations extracted from the WSDL |
||
393 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
394 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
395 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
396 | * - SOAPHeaders: required, required |
||
397 | * - documentation: Search for businesses matching all of the given criteria. |
||
398 | * @uses SoapClientBase::getSoapClient() |
||
399 | * @uses SoapClientBase::setResult() |
||
400 | * @uses SoapClientBase::getResult() |
||
401 | * @uses SoapClientBase::saveLastError() |
||
402 | * @param \Webservices\StructType\DutchBusinessSearchSelectionRequestType $parameters |
||
403 | * @return \Webservices\StructType\DutchBusinessSearchSelectionResponseType|bool |
||
404 | */ |
||
405 | public function dutchBusinessSearchSelection(\Webservices\StructType\DutchBusinessSearchSelectionRequestType $parameters) |
||
406 | { |
||
407 | try { |
||
408 | $this->setResult(self::getSoapClient()->dutchBusinessSearchSelection($parameters)); |
||
409 | return $this->getResult(); |
||
410 | } catch (\SoapFault $soapFault) { |
||
411 | $this->saveLastError(__METHOD__, $soapFault); |
||
412 | return false; |
||
413 | } |
||
414 | } |
||
415 | /** |
||
416 | * Method to call the operation originally named dutchBusinessGetSBIDescription |
||
417 | * Meta informations extracted from the WSDL |
||
418 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
419 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
420 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
421 | * - SOAPHeaders: required, required |
||
422 | * - documentation: Look up a SBI ('Standaard Bedrijfs Indeling 2008') code. |
||
423 | * @uses SoapClientBase::getSoapClient() |
||
424 | * @uses SoapClientBase::setResult() |
||
425 | * @uses SoapClientBase::getResult() |
||
426 | * @uses SoapClientBase::saveLastError() |
||
427 | * @param \Webservices\StructType\DutchBusinessGetSBIDescriptionRequestType $parameters |
||
428 | * @return \Webservices\StructType\DutchBusinessGetSBIDescriptionResponseType|bool |
||
429 | */ |
||
430 | public function dutchBusinessGetSBIDescription(\Webservices\StructType\DutchBusinessGetSBIDescriptionRequestType $parameters) |
||
431 | { |
||
432 | try { |
||
433 | $this->setResult(self::getSoapClient()->dutchBusinessGetSBIDescription($parameters)); |
||
434 | return $this->getResult(); |
||
435 | } catch (\SoapFault $soapFault) { |
||
436 | $this->saveLastError(__METHOD__, $soapFault); |
||
437 | return false; |
||
438 | } |
||
439 | } |
||
440 | /** |
||
441 | * Method to call the operation originally named dutchBusinessGetExtractDocument |
||
442 | * Meta informations extracted from the WSDL |
||
443 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
444 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
445 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
446 | * - SOAPHeaders: required, required |
||
447 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
448 | * @uses SoapClientBase::getSoapClient() |
||
449 | * @uses SoapClientBase::setResult() |
||
450 | * @uses SoapClientBase::getResult() |
||
451 | * @uses SoapClientBase::saveLastError() |
||
452 | * @param \Webservices\StructType\DutchBusinessGetExtractDocumentRequestType $parameters |
||
453 | * @return \Webservices\StructType\DutchBusinessGetExtractDocumentResponseType|bool |
||
454 | */ |
||
455 | public function dutchBusinessGetExtractDocument(\Webservices\StructType\DutchBusinessGetExtractDocumentRequestType $parameters) |
||
456 | { |
||
457 | try { |
||
458 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractDocument($parameters)); |
||
459 | return $this->getResult(); |
||
460 | } catch (\SoapFault $soapFault) { |
||
461 | $this->saveLastError(__METHOD__, $soapFault); |
||
462 | return false; |
||
463 | } |
||
464 | } |
||
465 | /** |
||
466 | * Method to call the operation originally named |
||
467 | * dutchBusinessGetExtractDocumentData |
||
468 | * Meta informations extracted from the WSDL |
||
469 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
470 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
471 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
472 | * - SOAPHeaders: required, required |
||
473 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
474 | * @uses SoapClientBase::getSoapClient() |
||
475 | * @uses SoapClientBase::setResult() |
||
476 | * @uses SoapClientBase::getResult() |
||
477 | * @uses SoapClientBase::saveLastError() |
||
478 | * @param \Webservices\StructType\DutchBusinessGetExtractDocumentDataRequestType $parameters |
||
479 | * @return \Webservices\StructType\DutchBusinessGetExtractDocumentDataResponseType|bool |
||
480 | */ |
||
481 | public function dutchBusinessGetExtractDocumentData(\Webservices\StructType\DutchBusinessGetExtractDocumentDataRequestType $parameters) |
||
482 | { |
||
483 | try { |
||
484 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractDocumentData($parameters)); |
||
485 | return $this->getResult(); |
||
486 | } catch (\SoapFault $soapFault) { |
||
487 | $this->saveLastError(__METHOD__, $soapFault); |
||
488 | return false; |
||
489 | } |
||
490 | } |
||
491 | /** |
||
492 | * Method to call the operation originally named |
||
493 | * dutchBusinessGetExtractDocumentDataV2 |
||
494 | * Meta informations extracted from the WSDL |
||
495 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
496 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
497 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
498 | * - SOAPHeaders: required, required |
||
499 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
500 | * @uses SoapClientBase::getSoapClient() |
||
501 | * @uses SoapClientBase::setResult() |
||
502 | * @uses SoapClientBase::getResult() |
||
503 | * @uses SoapClientBase::saveLastError() |
||
504 | * @param \Webservices\StructType\DutchBusinessGetExtractDocumentDataV2RequestType $parameters |
||
505 | * @return \Webservices\StructType\DutchBusinessGetExtractDocumentDataV2ResponseType|bool |
||
506 | */ |
||
507 | public function dutchBusinessGetExtractDocumentDataV2(\Webservices\StructType\DutchBusinessGetExtractDocumentDataV2RequestType $parameters) |
||
508 | { |
||
509 | try { |
||
510 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractDocumentDataV2($parameters)); |
||
511 | return $this->getResult(); |
||
512 | } catch (\SoapFault $soapFault) { |
||
513 | $this->saveLastError(__METHOD__, $soapFault); |
||
514 | return false; |
||
515 | } |
||
516 | } |
||
517 | /** |
||
518 | * Method to call the operation originally named |
||
519 | * dutchBusinessGetExtractDocumentDataV3 |
||
520 | * Meta informations extracted from the WSDL |
||
521 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
522 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
523 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
524 | * - SOAPHeaders: required, required |
||
525 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
526 | * @uses SoapClientBase::getSoapClient() |
||
527 | * @uses SoapClientBase::setResult() |
||
528 | * @uses SoapClientBase::getResult() |
||
529 | * @uses SoapClientBase::saveLastError() |
||
530 | * @param \Webservices\StructType\DutchBusinessGetExtractDocumentDataV3RequestType $parameters |
||
531 | * @return \Webservices\StructType\DutchBusinessGetExtractDocumentDataV3ResponseType|bool |
||
532 | */ |
||
533 | public function dutchBusinessGetExtractDocumentDataV3(\Webservices\StructType\DutchBusinessGetExtractDocumentDataV3RequestType $parameters) |
||
534 | { |
||
535 | try { |
||
536 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractDocumentDataV3($parameters)); |
||
537 | return $this->getResult(); |
||
538 | } catch (\SoapFault $soapFault) { |
||
539 | $this->saveLastError(__METHOD__, $soapFault); |
||
540 | return false; |
||
541 | } |
||
542 | } |
||
543 | /** |
||
544 | * Method to call the operation originally named |
||
545 | * dutchBusinessGetLegalExtractDocumentDataV2 |
||
546 | * Meta informations extracted from the WSDL |
||
547 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
548 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
549 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
550 | * - SOAPHeaders: required, required |
||
551 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
552 | * @uses SoapClientBase::getSoapClient() |
||
553 | * @uses SoapClientBase::setResult() |
||
554 | * @uses SoapClientBase::getResult() |
||
555 | * @uses SoapClientBase::saveLastError() |
||
556 | * @param \Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV2RequestType $parameters |
||
557 | * @return \Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV2ResponseType|bool |
||
558 | */ |
||
559 | public function dutchBusinessGetLegalExtractDocumentDataV2(\Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV2RequestType $parameters) |
||
560 | { |
||
561 | try { |
||
562 | $this->setResult(self::getSoapClient()->dutchBusinessGetLegalExtractDocumentDataV2($parameters)); |
||
563 | return $this->getResult(); |
||
564 | } catch (\SoapFault $soapFault) { |
||
565 | $this->saveLastError(__METHOD__, $soapFault); |
||
566 | return false; |
||
567 | } |
||
568 | } |
||
569 | /** |
||
570 | * Method to call the operation originally named |
||
571 | * dutchBusinessGetLegalExtractDocumentDataV3 |
||
572 | * Meta informations extracted from the WSDL |
||
573 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
574 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
575 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
576 | * - SOAPHeaders: required, required |
||
577 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
578 | * @uses SoapClientBase::getSoapClient() |
||
579 | * @uses SoapClientBase::setResult() |
||
580 | * @uses SoapClientBase::getResult() |
||
581 | * @uses SoapClientBase::saveLastError() |
||
582 | * @param \Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV3RequestType $parameters |
||
583 | * @return \Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV3ResponseType|bool |
||
584 | */ |
||
585 | public function dutchBusinessGetLegalExtractDocumentDataV3(\Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV3RequestType $parameters) |
||
586 | { |
||
587 | try { |
||
588 | $this->setResult(self::getSoapClient()->dutchBusinessGetLegalExtractDocumentDataV3($parameters)); |
||
589 | return $this->getResult(); |
||
590 | } catch (\SoapFault $soapFault) { |
||
591 | $this->saveLastError(__METHOD__, $soapFault); |
||
592 | return false; |
||
593 | } |
||
594 | } |
||
595 | /** |
||
596 | * Method to call the operation originally named dutchBusinessGetExtractHistory |
||
597 | * Meta informations extracted from the WSDL |
||
598 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
599 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
600 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
601 | * - SOAPHeaders: required, required |
||
602 | * - documentation: Retrieve a list of extract document references |
||
603 | * @uses SoapClientBase::getSoapClient() |
||
604 | * @uses SoapClientBase::setResult() |
||
605 | * @uses SoapClientBase::getResult() |
||
606 | * @uses SoapClientBase::saveLastError() |
||
607 | * @param \Webservices\StructType\DutchBusinessGetExtractHistoryRequestType $parameters |
||
608 | * @return \Webservices\StructType\DutchBusinessGetExtractHistoryResponseType|bool |
||
609 | */ |
||
610 | public function dutchBusinessGetExtractHistory(\Webservices\StructType\DutchBusinessGetExtractHistoryRequestType $parameters) |
||
611 | { |
||
612 | try { |
||
613 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractHistory($parameters)); |
||
614 | return $this->getResult(); |
||
615 | } catch (\SoapFault $soapFault) { |
||
616 | $this->saveLastError(__METHOD__, $soapFault); |
||
617 | return false; |
||
618 | } |
||
619 | } |
||
620 | /** |
||
621 | * Method to call the operation originally named |
||
622 | * dutchBusinessGetExtractHistoryChanged |
||
623 | * Meta informations extracted from the WSDL |
||
624 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
625 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
626 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
627 | * - SOAPHeaders: required, required |
||
628 | * - documentation: Retrieve a list of extract document references |
||
629 | * @uses SoapClientBase::getSoapClient() |
||
630 | * @uses SoapClientBase::setResult() |
||
631 | * @uses SoapClientBase::getResult() |
||
632 | * @uses SoapClientBase::saveLastError() |
||
633 | * @param \Webservices\StructType\DutchBusinessGetExtractHistoryChangedRequestType $parameters |
||
634 | * @return \Webservices\StructType\DutchBusinessGetExtractHistoryChangedResponseType|bool |
||
635 | */ |
||
636 | public function dutchBusinessGetExtractHistoryChanged(\Webservices\StructType\DutchBusinessGetExtractHistoryChangedRequestType $parameters) |
||
637 | { |
||
638 | try { |
||
639 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractHistoryChanged($parameters)); |
||
640 | return $this->getResult(); |
||
641 | } catch (\SoapFault $soapFault) { |
||
642 | $this->saveLastError(__METHOD__, $soapFault); |
||
643 | return false; |
||
644 | } |
||
645 | } |
||
646 | /** |
||
647 | * Method to call the operation originally named |
||
648 | * dutchBusinessGetExtractHistoryDocumentData |
||
649 | * Meta informations extracted from the WSDL |
||
650 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
651 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
652 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
653 | * - SOAPHeaders: required, required |
||
654 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
655 | * @uses SoapClientBase::getSoapClient() |
||
656 | * @uses SoapClientBase::setResult() |
||
657 | * @uses SoapClientBase::getResult() |
||
658 | * @uses SoapClientBase::saveLastError() |
||
659 | * @param \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataRequestType $parameters |
||
660 | * @return \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataResponseType|bool |
||
661 | */ |
||
662 | public function dutchBusinessGetExtractHistoryDocumentData(\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataRequestType $parameters) |
||
663 | { |
||
664 | try { |
||
665 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractHistoryDocumentData($parameters)); |
||
666 | return $this->getResult(); |
||
667 | } catch (\SoapFault $soapFault) { |
||
668 | $this->saveLastError(__METHOD__, $soapFault); |
||
669 | return false; |
||
670 | } |
||
671 | } |
||
672 | /** |
||
673 | * Method to call the operation originally named |
||
674 | * dutchBusinessGetExtractHistoryDocumentDataV2 |
||
675 | * Meta informations extracted from the WSDL |
||
676 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
677 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
678 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
679 | * - SOAPHeaders: required, required |
||
680 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
681 | * @uses SoapClientBase::getSoapClient() |
||
682 | * @uses SoapClientBase::setResult() |
||
683 | * @uses SoapClientBase::getResult() |
||
684 | * @uses SoapClientBase::saveLastError() |
||
685 | * @param \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV2RequestType $parameters |
||
686 | * @return \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV2ResponseType|bool |
||
687 | */ |
||
688 | public function dutchBusinessGetExtractHistoryDocumentDataV2(\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV2RequestType $parameters) |
||
689 | { |
||
690 | try { |
||
691 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractHistoryDocumentDataV2($parameters)); |
||
692 | return $this->getResult(); |
||
693 | } catch (\SoapFault $soapFault) { |
||
694 | $this->saveLastError(__METHOD__, $soapFault); |
||
695 | return false; |
||
696 | } |
||
697 | } |
||
698 | /** |
||
699 | * Method to call the operation originally named |
||
700 | * dutchBusinessGetExtractHistoryDocumentDataV3 |
||
701 | * Meta informations extracted from the WSDL |
||
702 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
703 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
704 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
705 | * - SOAPHeaders: required, required |
||
706 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
707 | * @uses SoapClientBase::getSoapClient() |
||
708 | * @uses SoapClientBase::setResult() |
||
709 | * @uses SoapClientBase::getResult() |
||
710 | * @uses SoapClientBase::saveLastError() |
||
711 | * @param \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3RequestType $parameters |
||
712 | * @return \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3ResponseType|bool |
||
713 | */ |
||
714 | public function dutchBusinessGetExtractHistoryDocumentDataV3(\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3RequestType $parameters) |
||
715 | { |
||
716 | try { |
||
717 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractHistoryDocumentDataV3($parameters)); |
||
718 | return $this->getResult(); |
||
719 | } catch (\SoapFault $soapFault) { |
||
720 | $this->saveLastError(__METHOD__, $soapFault); |
||
721 | return false; |
||
722 | } |
||
723 | } |
||
724 | /** |
||
725 | * Method to call the operation originally named |
||
726 | * dutchBusinessGetExtractHistoryDocumentDataV3ByDossier |
||
727 | * Meta informations extracted from the WSDL |
||
728 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
729 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
730 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
731 | * - SOAPHeaders: required, required |
||
732 | * - documentation: Retrieve a Chamber of Commerce extract document (Dutch: Uittreksel Handelsregister) |
||
733 | * @uses SoapClientBase::getSoapClient() |
||
734 | * @uses SoapClientBase::setResult() |
||
735 | * @uses SoapClientBase::getResult() |
||
736 | * @uses SoapClientBase::saveLastError() |
||
737 | * @param \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType $parameters |
||
738 | * @return \Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType|bool |
||
739 | */ |
||
740 | public function dutchBusinessGetExtractHistoryDocumentDataV3ByDossier(\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3ByDossierRequestType $parameters) |
||
741 | { |
||
742 | try { |
||
743 | $this->setResult(self::getSoapClient()->dutchBusinessGetExtractHistoryDocumentDataV3ByDossier($parameters)); |
||
744 | return $this->getResult(); |
||
745 | } catch (\SoapFault $soapFault) { |
||
746 | $this->saveLastError(__METHOD__, $soapFault); |
||
747 | return false; |
||
748 | } |
||
749 | } |
||
750 | /** |
||
751 | * Method to call the operation originally named dutchBusinessGetDossierHistory |
||
752 | * Meta informations extracted from the WSDL |
||
753 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
754 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
755 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
756 | * - SOAPHeaders: required, required |
||
757 | * - documentation: Get a list of logged updates for a specific business dossier |
||
758 | * @uses SoapClientBase::getSoapClient() |
||
759 | * @uses SoapClientBase::setResult() |
||
760 | * @uses SoapClientBase::getResult() |
||
761 | * @uses SoapClientBase::saveLastError() |
||
762 | * @param \Webservices\StructType\DutchBusinessGetDossierHistoryRequestType $parameters |
||
763 | * @return \Webservices\StructType\DutchBusinessGetDossierHistoryResponseType|bool |
||
764 | */ |
||
765 | public function dutchBusinessGetDossierHistory(\Webservices\StructType\DutchBusinessGetDossierHistoryRequestType $parameters) |
||
766 | { |
||
767 | try { |
||
768 | $this->setResult(self::getSoapClient()->dutchBusinessGetDossierHistory($parameters)); |
||
769 | return $this->getResult(); |
||
770 | } catch (\SoapFault $soapFault) { |
||
771 | $this->saveLastError(__METHOD__, $soapFault); |
||
772 | return false; |
||
773 | } |
||
774 | } |
||
775 | /** |
||
776 | * Method to call the operation originally named dutchBusinessUpdateGetOverview |
||
777 | * Meta informations extracted from the WSDL |
||
778 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
779 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
780 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
781 | * - SOAPHeaders: required, required |
||
782 | * - documentation: Get a paged result of all the dossier the logged on user is subscribed to. |
||
783 | * @uses SoapClientBase::getSoapClient() |
||
784 | * @uses SoapClientBase::setResult() |
||
785 | * @uses SoapClientBase::getResult() |
||
786 | * @uses SoapClientBase::saveLastError() |
||
787 | * @param \Webservices\StructType\DutchBusinessUpdateGetOverviewRequestType $parameters |
||
788 | * @return \Webservices\StructType\DutchBusinessUpdateGetOverviewResponseType|bool |
||
789 | */ |
||
790 | public function dutchBusinessUpdateGetOverview(\Webservices\StructType\DutchBusinessUpdateGetOverviewRequestType $parameters) |
||
791 | { |
||
792 | try { |
||
793 | $this->setResult(self::getSoapClient()->dutchBusinessUpdateGetOverview($parameters)); |
||
794 | return $this->getResult(); |
||
795 | } catch (\SoapFault $soapFault) { |
||
796 | $this->saveLastError(__METHOD__, $soapFault); |
||
797 | return false; |
||
798 | } |
||
799 | } |
||
800 | /** |
||
801 | * Method to call the operation originally named dutchBusinessUpdateCheckDossier |
||
802 | * Meta informations extracted from the WSDL |
||
803 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
804 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
805 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
806 | * - SOAPHeaders: required, required |
||
807 | * - documentation: Retrieve information on the last change of a business establishment |
||
808 | * @uses SoapClientBase::getSoapClient() |
||
809 | * @uses SoapClientBase::setResult() |
||
810 | * @uses SoapClientBase::getResult() |
||
811 | * @uses SoapClientBase::saveLastError() |
||
812 | * @param \Webservices\StructType\DutchBusinessUpdateCheckDossierRequestType $parameters |
||
813 | * @return \Webservices\StructType\DutchBusinessUpdateCheckDossierResponseType|bool |
||
814 | */ |
||
815 | public function dutchBusinessUpdateCheckDossier(\Webservices\StructType\DutchBusinessUpdateCheckDossierRequestType $parameters) |
||
816 | { |
||
817 | try { |
||
818 | $this->setResult(self::getSoapClient()->dutchBusinessUpdateCheckDossier($parameters)); |
||
819 | return $this->getResult(); |
||
820 | } catch (\SoapFault $soapFault) { |
||
821 | $this->saveLastError(__METHOD__, $soapFault); |
||
822 | return false; |
||
823 | } |
||
824 | } |
||
825 | /** |
||
826 | * Method to call the operation originally named |
||
827 | * dutchBusinessUpdateGetChangedDossiers |
||
828 | * Meta informations extracted from the WSDL |
||
829 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
830 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
831 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
832 | * - SOAPHeaders: required, required |
||
833 | * - documentation: Retrieve all dossiers changed since the given date. |
||
834 | * @uses SoapClientBase::getSoapClient() |
||
835 | * @uses SoapClientBase::setResult() |
||
836 | * @uses SoapClientBase::getResult() |
||
837 | * @uses SoapClientBase::saveLastError() |
||
838 | * @param \Webservices\StructType\DutchBusinessUpdateGetChangedDossiersRequestType $parameters |
||
839 | * @return \Webservices\StructType\DutchBusinessUpdateGetChangedDossiersResponseType|bool |
||
840 | */ |
||
841 | public function dutchBusinessUpdateGetChangedDossiers(\Webservices\StructType\DutchBusinessUpdateGetChangedDossiersRequestType $parameters) |
||
842 | { |
||
843 | try { |
||
844 | $this->setResult(self::getSoapClient()->dutchBusinessUpdateGetChangedDossiers($parameters)); |
||
845 | return $this->getResult(); |
||
846 | } catch (\SoapFault $soapFault) { |
||
847 | $this->saveLastError(__METHOD__, $soapFault); |
||
848 | return false; |
||
849 | } |
||
850 | } |
||
851 | /** |
||
852 | * Method to call the operation originally named dutchBusinessUpdateGetDossiers |
||
853 | * Meta informations extracted from the WSDL |
||
854 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
855 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
856 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
857 | * - SOAPHeaders: required, required |
||
858 | * - documentation: Returns a list of all dossiers that have been updated since they were last retrieved by the user |
||
859 | * @uses SoapClientBase::getSoapClient() |
||
860 | * @uses SoapClientBase::setResult() |
||
861 | * @uses SoapClientBase::getResult() |
||
862 | * @uses SoapClientBase::saveLastError() |
||
863 | * @param \Webservices\StructType\DutchBusinessUpdateGetDossiersRequestType $parameters |
||
864 | * @return \Webservices\StructType\DutchBusinessUpdateGetDossiersResponseType|bool |
||
865 | */ |
||
866 | public function dutchBusinessUpdateGetDossiers(\Webservices\StructType\DutchBusinessUpdateGetDossiersRequestType $parameters) |
||
867 | { |
||
868 | try { |
||
869 | $this->setResult(self::getSoapClient()->dutchBusinessUpdateGetDossiers($parameters)); |
||
870 | return $this->getResult(); |
||
871 | } catch (\SoapFault $soapFault) { |
||
872 | $this->saveLastError(__METHOD__, $soapFault); |
||
873 | return false; |
||
874 | } |
||
875 | } |
||
876 | /** |
||
877 | * Method to call the operation originally named dutchBusinessUpdateAddDossier |
||
878 | * Meta informations extracted from the WSDL |
||
879 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
880 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
881 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
882 | * - SOAPHeaders: required, required |
||
883 | * - documentation: Add a dossier to the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates |
||
884 | * @uses SoapClientBase::getSoapClient() |
||
885 | * @uses SoapClientBase::setResult() |
||
886 | * @uses SoapClientBase::getResult() |
||
887 | * @uses SoapClientBase::saveLastError() |
||
888 | * @param \Webservices\StructType\DutchBusinessUpdateAddDossierRequestType $parameters |
||
889 | * @return \Webservices\StructType\DutchBusinessUpdateAddDossierResponseType|bool |
||
890 | */ |
||
891 | public function dutchBusinessUpdateAddDossier(\Webservices\StructType\DutchBusinessUpdateAddDossierRequestType $parameters) |
||
892 | { |
||
893 | try { |
||
894 | $this->setResult(self::getSoapClient()->dutchBusinessUpdateAddDossier($parameters)); |
||
895 | return $this->getResult(); |
||
896 | } catch (\SoapFault $soapFault) { |
||
897 | $this->saveLastError(__METHOD__, $soapFault); |
||
898 | return false; |
||
899 | } |
||
900 | } |
||
901 | /** |
||
902 | * Method to call the operation originally named dutchBusinessUpdateRemoveDossier |
||
903 | * Meta informations extracted from the WSDL |
||
904 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
905 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
906 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
907 | * - SOAPHeaders: required, required |
||
908 | * - documentation: Remove a dossier from the list of dossiers for which the user (the user whose credentials are used to make the call) wants to receive updates. |
||
909 | * @uses SoapClientBase::getSoapClient() |
||
910 | * @uses SoapClientBase::setResult() |
||
911 | * @uses SoapClientBase::getResult() |
||
912 | * @uses SoapClientBase::saveLastError() |
||
913 | * @param \Webservices\StructType\DutchBusinessUpdateRemoveDossierRequestType $parameters |
||
914 | * @return \Webservices\StructType\DutchBusinessUpdateRemoveDossierResponseType|bool |
||
915 | */ |
||
916 | public function dutchBusinessUpdateRemoveDossier(\Webservices\StructType\DutchBusinessUpdateRemoveDossierRequestType $parameters) |
||
917 | { |
||
918 | try { |
||
919 | $this->setResult(self::getSoapClient()->dutchBusinessUpdateRemoveDossier($parameters)); |
||
920 | return $this->getResult(); |
||
921 | } catch (\SoapFault $soapFault) { |
||
922 | $this->saveLastError(__METHOD__, $soapFault); |
||
923 | return false; |
||
924 | } |
||
925 | } |
||
926 | /** |
||
927 | * Method to call the operation originally named dutchBusinessSearchNewsByDossier |
||
928 | * Meta informations extracted from the WSDL |
||
929 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
930 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
931 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
932 | * - SOAPHeaders: required, required |
||
933 | * - documentation: Get a paged result of all news items found. |
||
934 | * @uses SoapClientBase::getSoapClient() |
||
935 | * @uses SoapClientBase::setResult() |
||
936 | * @uses SoapClientBase::getResult() |
||
937 | * @uses SoapClientBase::saveLastError() |
||
938 | * @param \Webservices\StructType\DutchBusinessSearchNewsByDossierRequestType $parameters |
||
939 | * @return \Webservices\StructType\DutchBusinessSearchNewsByDossierResponseType|bool |
||
940 | */ |
||
941 | public function dutchBusinessSearchNewsByDossier(\Webservices\StructType\DutchBusinessSearchNewsByDossierRequestType $parameters) |
||
942 | { |
||
943 | try { |
||
944 | $this->setResult(self::getSoapClient()->dutchBusinessSearchNewsByDossier($parameters)); |
||
945 | return $this->getResult(); |
||
946 | } catch (\SoapFault $soapFault) { |
||
947 | $this->saveLastError(__METHOD__, $soapFault); |
||
948 | return false; |
||
949 | } |
||
950 | } |
||
951 | /** |
||
952 | * Method to call the operation originally named dutchBusinessUBOStartInvestigation |
||
953 | * Meta informations extracted from the WSDL |
||
954 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
955 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
956 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
957 | * - SOAPHeaders: required, required |
||
958 | * - documentation: Starts an UBO investigation for given dossierNumber and establishmentNumber |
||
959 | * @uses SoapClientBase::getSoapClient() |
||
960 | * @uses SoapClientBase::setResult() |
||
961 | * @uses SoapClientBase::getResult() |
||
962 | * @uses SoapClientBase::saveLastError() |
||
963 | * @param \Webservices\StructType\DutchBusinessUBOStartInvestigationRequestType $parameters |
||
964 | * @return \Webservices\StructType\DutchBusinessUBOStartInvestigationResponseType|bool |
||
965 | */ |
||
966 | public function dutchBusinessUBOStartInvestigation(\Webservices\StructType\DutchBusinessUBOStartInvestigationRequestType $parameters) |
||
967 | { |
||
968 | try { |
||
969 | $this->setResult(self::getSoapClient()->dutchBusinessUBOStartInvestigation($parameters)); |
||
970 | return $this->getResult(); |
||
971 | } catch (\SoapFault $soapFault) { |
||
972 | $this->saveLastError(__METHOD__, $soapFault); |
||
973 | return false; |
||
974 | } |
||
975 | } |
||
976 | /** |
||
977 | * Method to call the operation originally named dutchBusinessUBOCheckInvestigation |
||
978 | * Meta informations extracted from the WSDL |
||
979 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
980 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
981 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
982 | * - SOAPHeaders: required, required |
||
983 | * - documentation: Checks the status of an UBO investigation |
||
984 | * @uses SoapClientBase::getSoapClient() |
||
985 | * @uses SoapClientBase::setResult() |
||
986 | * @uses SoapClientBase::getResult() |
||
987 | * @uses SoapClientBase::saveLastError() |
||
988 | * @param \Webservices\StructType\DutchBusinessUBOCheckInvestigationRequestType $parameters |
||
989 | * @return \Webservices\StructType\DutchBusinessUBOCheckInvestigationResponseType|bool |
||
990 | */ |
||
991 | public function dutchBusinessUBOCheckInvestigation(\Webservices\StructType\DutchBusinessUBOCheckInvestigationRequestType $parameters) |
||
992 | { |
||
993 | try { |
||
994 | $this->setResult(self::getSoapClient()->dutchBusinessUBOCheckInvestigation($parameters)); |
||
995 | return $this->getResult(); |
||
996 | } catch (\SoapFault $soapFault) { |
||
997 | $this->saveLastError(__METHOD__, $soapFault); |
||
998 | return false; |
||
999 | } |
||
1000 | } |
||
1001 | /** |
||
1002 | * Method to call the operation originally named |
||
1003 | * dutchBusinessUBOPickupInvestigation |
||
1004 | * Meta informations extracted from the WSDL |
||
1005 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
1006 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
1007 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
1008 | * - SOAPHeaders: required, required |
||
1009 | * - documentation: Pickup the result of an UBO investigation |
||
1010 | * @uses SoapClientBase::getSoapClient() |
||
1011 | * @uses SoapClientBase::setResult() |
||
1012 | * @uses SoapClientBase::getResult() |
||
1013 | * @uses SoapClientBase::saveLastError() |
||
1014 | * @param \Webservices\StructType\DutchBusinessUBOPickupInvestigationRequestType $parameters |
||
1015 | * @return \Webservices\StructType\DutchBusinessUBOPickupInvestigationResponseType|bool |
||
1016 | */ |
||
1017 | public function dutchBusinessUBOPickupInvestigation(\Webservices\StructType\DutchBusinessUBOPickupInvestigationRequestType $parameters) |
||
1018 | { |
||
1019 | try { |
||
1020 | $this->setResult(self::getSoapClient()->dutchBusinessUBOPickupInvestigation($parameters)); |
||
1021 | return $this->getResult(); |
||
1022 | } catch (\SoapFault $soapFault) { |
||
1023 | $this->saveLastError(__METHOD__, $soapFault); |
||
1024 | return false; |
||
1025 | } |
||
1026 | } |
||
1027 | /** |
||
1028 | * Method to call the operation originally named dutchBusinessSearchParameters |
||
1029 | * Meta informations extracted from the WSDL |
||
1030 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
1031 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
1032 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
1033 | * - SOAPHeaders: required, required |
||
1034 | * - documentation: Find business establishments using a variety of parameters |
||
1035 | * @uses SoapClientBase::getSoapClient() |
||
1036 | * @uses SoapClientBase::setResult() |
||
1037 | * @uses SoapClientBase::getResult() |
||
1038 | * @uses SoapClientBase::saveLastError() |
||
1039 | * @param \Webservices\StructType\DutchBusinessSearchParametersRequestType $parameters |
||
1040 | * @return \Webservices\StructType\DutchBusinessSearchParametersResponseType|bool |
||
1041 | */ |
||
1042 | public function dutchBusinessSearchParameters(\Webservices\StructType\DutchBusinessSearchParametersRequestType $parameters) |
||
1043 | { |
||
1044 | try { |
||
1045 | $this->setResult(self::getSoapClient()->dutchBusinessSearchParameters($parameters)); |
||
1046 | return $this->getResult(); |
||
1047 | } catch (\SoapFault $soapFault) { |
||
1048 | $this->saveLastError(__METHOD__, $soapFault); |
||
1049 | return false; |
||
1050 | } |
||
1051 | } |
||
1052 | /** |
||
1053 | * Method to call the operation originally named dutchVehicleGetVehicleV2 |
||
1054 | * Meta informations extracted from the WSDL |
||
1055 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
1056 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
1057 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
1058 | * - SOAPHeaders: required, required |
||
1059 | * - documentation: Get the information of a dutch vehicle |
||
1060 | * @uses SoapClientBase::getSoapClient() |
||
1061 | * @uses SoapClientBase::setResult() |
||
1062 | * @uses SoapClientBase::getResult() |
||
1063 | * @uses SoapClientBase::saveLastError() |
||
1064 | * @param \Webservices\StructType\DutchVehicleGetVehicleV2RequestType $parameters |
||
1065 | * @return \Webservices\StructType\DutchVehicleGetVehicleV2ResponseType|bool |
||
1066 | */ |
||
1067 | public function dutchVehicleGetVehicleV2(\Webservices\StructType\DutchVehicleGetVehicleV2RequestType $parameters) |
||
1068 | { |
||
1069 | try { |
||
1070 | $this->setResult(self::getSoapClient()->dutchVehicleGetVehicleV2($parameters)); |
||
1071 | return $this->getResult(); |
||
1072 | } catch (\SoapFault $soapFault) { |
||
1073 | $this->saveLastError(__METHOD__, $soapFault); |
||
1074 | return false; |
||
1075 | } |
||
1076 | } |
||
1077 | /** |
||
1078 | * Method to call the operation originally named dutchVehicleGetPurchaseReference |
||
1079 | * Meta informations extracted from the WSDL |
||
1080 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
1081 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
1082 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
1083 | * - SOAPHeaders: required, required |
||
1084 | * - documentation: Get the price information of a dutch vehicle |
||
1085 | * @uses SoapClientBase::getSoapClient() |
||
1086 | * @uses SoapClientBase::setResult() |
||
1087 | * @uses SoapClientBase::getResult() |
||
1088 | * @uses SoapClientBase::saveLastError() |
||
1089 | * @param \Webservices\StructType\DutchVehicleGetPurchaseReferenceRequestType $parameters |
||
1090 | * @return \Webservices\StructType\DutchVehicleGetPurchaseReferenceResponseType|bool |
||
1091 | */ |
||
1092 | public function dutchVehicleGetPurchaseReference(\Webservices\StructType\DutchVehicleGetPurchaseReferenceRequestType $parameters) |
||
1093 | { |
||
1094 | try { |
||
1095 | $this->setResult(self::getSoapClient()->dutchVehicleGetPurchaseReference($parameters)); |
||
1096 | return $this->getResult(); |
||
1097 | } catch (\SoapFault $soapFault) { |
||
1098 | $this->saveLastError(__METHOD__, $soapFault); |
||
1099 | return false; |
||
1100 | } |
||
1101 | } |
||
1102 | /** |
||
1103 | * Method to call the operation originally named dutchVehicleGetOwnerHistory |
||
1104 | * Meta informations extracted from the WSDL |
||
1105 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
1106 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
1107 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
1108 | * - SOAPHeaders: required, required |
||
1109 | * - documentation: Get all the (previous) owners of a dutch vehicle |
||
1110 | * @uses SoapClientBase::getSoapClient() |
||
1111 | * @uses SoapClientBase::setResult() |
||
1112 | * @uses SoapClientBase::getResult() |
||
1113 | * @uses SoapClientBase::saveLastError() |
||
1114 | * @param \Webservices\StructType\DutchVehicleGetOwnerHistoryRequestType $parameters |
||
1115 | * @return \Webservices\StructType\DutchVehicleGetOwnerHistoryResponseType|bool |
||
1116 | */ |
||
1117 | public function dutchVehicleGetOwnerHistory(\Webservices\StructType\DutchVehicleGetOwnerHistoryRequestType $parameters) |
||
1118 | { |
||
1119 | try { |
||
1120 | $this->setResult(self::getSoapClient()->dutchVehicleGetOwnerHistory($parameters)); |
||
1121 | return $this->getResult(); |
||
1122 | } catch (\SoapFault $soapFault) { |
||
1123 | $this->saveLastError(__METHOD__, $soapFault); |
||
1124 | return false; |
||
1125 | } |
||
1126 | } |
||
1127 | /** |
||
1128 | * Method to call the operation originally named dutchVehicleGetMarketValue |
||
1129 | * Meta informations extracted from the WSDL |
||
1130 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
1131 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
1132 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
1133 | * - SOAPHeaders: required, required |
||
1134 | * - documentation: Get all the current market value of a vehicle |
||
1135 | * @uses SoapClientBase::getSoapClient() |
||
1136 | * @uses SoapClientBase::setResult() |
||
1137 | * @uses SoapClientBase::getResult() |
||
1138 | * @uses SoapClientBase::saveLastError() |
||
1139 | * @param \Webservices\StructType\DutchVehicleGetMarketValueRequestType $parameters |
||
1140 | * @return \Webservices\StructType\DutchVehicleGetMarketValueResponseType|bool |
||
1141 | */ |
||
1142 | public function dutchVehicleGetMarketValue(\Webservices\StructType\DutchVehicleGetMarketValueRequestType $parameters) |
||
1143 | { |
||
1144 | try { |
||
1145 | $this->setResult(self::getSoapClient()->dutchVehicleGetMarketValue($parameters)); |
||
1146 | return $this->getResult(); |
||
1147 | } catch (\SoapFault $soapFault) { |
||
1148 | $this->saveLastError(__METHOD__, $soapFault); |
||
1149 | return false; |
||
1150 | } |
||
1151 | } |
||
1152 | /** |
||
1153 | * Method to call the operation originally named dutchVehicleGetVehicle |
||
1154 | * Meta informations extracted from the WSDL |
||
1155 | * - SOAPHeaderNames: HeaderLogin, HeaderAuthenticate |
||
1156 | * - SOAPHeaderNamespaces: http://www.webservices.nl/soap/, http://www.webservices.nl/soap/ |
||
1157 | * - SOAPHeaderTypes: \Webservices\StructType\HeaderLoginType, \Webservices\StructType\HeaderAuthenticateType |
||
1158 | * - SOAPHeaders: required, required |
||
1159 | * - documentation: Get the information of a dutch vehicle |
||
1160 | * @uses SoapClientBase::getSoapClient() |
||
1161 | * @uses SoapClientBase::setResult() |
||
1162 | * @uses SoapClientBase::getResult() |
||
1163 | * @uses SoapClientBase::saveLastError() |
||
1164 | * @param \Webservices\StructType\DutchVehicleGetVehicleRequestType $parameters |
||
1165 | * @return \Webservices\StructType\DutchVehicleGetVehicleResponseType|bool |
||
1166 | */ |
||
1167 | public function dutchVehicleGetVehicle(\Webservices\StructType\DutchVehicleGetVehicleRequestType $parameters) |
||
1168 | { |
||
1169 | try { |
||
1170 | $this->setResult(self::getSoapClient()->dutchVehicleGetVehicle($parameters)); |
||
1171 | return $this->getResult(); |
||
1172 | } catch (\SoapFault $soapFault) { |
||
1173 | $this->saveLastError(__METHOD__, $soapFault); |
||
1174 | return false; |
||
1175 | } |
||
1176 | } |
||
1177 | /** |
||
1178 | * Returns the result |
||
1179 | * @see SoapClientBase::getResult() |
||
1180 | * @return \Webservices\StructType\DutchAddressRangePostcodeSearchResponseType|\Webservices\StructType\DutchBusinessGetDossierHistoryResponseType|\Webservices\StructType\DutchBusinessGetDossierResponseType|\Webservices\StructType\DutchBusinessGetDossierV2ResponseType|\Webservices\StructType\DutchBusinessGetDossierV3ResponseType|\Webservices\StructType\DutchBusinessGetExtractDocumentDataResponseType|\Webservices\StructType\DutchBusinessGetExtractDocumentDataV2ResponseType|\Webservices\StructType\DutchBusinessGetExtractDocumentDataV3ResponseType|\Webservices\StructType\DutchBusinessGetExtractDocumentResponseType|\Webservices\StructType\DutchBusinessGetExtractHistoryChangedResponseType|\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataResponseType|\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV2ResponseType|\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3ByDossierResponseType|\Webservices\StructType\DutchBusinessGetExtractHistoryDocumentDataV3ResponseType|\Webservices\StructType\DutchBusinessGetExtractHistoryResponseType|\Webservices\StructType\DutchBusinessGetLegalEntityResponseType|\Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV2ResponseType|\Webservices\StructType\DutchBusinessGetLegalExtractDocumentDataV3ResponseType|\Webservices\StructType\DutchBusinessGetOrganizationTreeResponseType|\Webservices\StructType\DutchBusinessGetPositionsResponseType|\Webservices\StructType\DutchBusinessGetSBIDescriptionResponseType|\Webservices\StructType\DutchBusinessGetSBIResponseType|\Webservices\StructType\DutchBusinessGetVatNumberResponseType|\Webservices\StructType\DutchBusinessSearchDossierNumberResponseType|\Webservices\StructType\DutchBusinessSearchEstablishmentsResponseType|\Webservices\StructType\DutchBusinessSearchNewsByDossierResponseType|\Webservices\StructType\DutchBusinessSearchParametersResponseType|\Webservices\StructType\DutchBusinessSearchParametersV2ResponseType|\Webservices\StructType\DutchBusinessSearchPostcodeResponseType|\Webservices\StructType\DutchBusinessSearchResponseType|\Webservices\StructType\DutchBusinessSearchSelectionResponseType|\Webservices\StructType\DutchBusinessUBOCheckInvestigationResponseType|\Webservices\StructType\DutchBusinessUBOPickupInvestigationResponseType|\Webservices\StructType\DutchBusinessUBOStartInvestigationResponseType|\Webservices\StructType\DutchBusinessUpdateAddDossierResponseType|\Webservices\StructType\DutchBusinessUpdateCheckDossierResponseType|\Webservices\StructType\DutchBusinessUpdateGetChangedDossiersResponseType|\Webservices\StructType\DutchBusinessUpdateGetDossiersResponseType|\Webservices\StructType\DutchBusinessUpdateGetOverviewResponseType|\Webservices\StructType\DutchBusinessUpdateRemoveDossierResponseType|\Webservices\StructType\DutchVehicleGetMarketValueResponseType|\Webservices\StructType\DutchVehicleGetOwnerHistoryResponseType|\Webservices\StructType\DutchVehicleGetPurchaseReferenceResponseType|\Webservices\StructType\DutchVehicleGetVehicleResponseType|\Webservices\StructType\DutchVehicleGetVehicleV2ResponseType |
||
1181 | */ |
||
1182 | public function getResult() |
||
1185 | } |
||
1186 | /** |
||
1187 | * Method returning the class name |
||
1188 | * @return string __CLASS__ |
||
1189 | */ |
||
1190 | public function __toString() |
||
1191 | { |
||
1192 | return __CLASS__; |
||
1193 | } |
||
1194 | } |
||
1195 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths