Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Use WSDL_CACHE_NONE to disable wsdl caching
Browse files Browse the repository at this point in the history
  • Loading branch information
matteodem committed Mar 18, 2015
1 parent 37e984c commit 1f13f3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Framework/MockObject/Generator.php
Expand Up @@ -544,7 +544,7 @@ public function generateClassFromWsdl($wsdlFile, $className, array $methods = ar
}

if ($this->soapLoaded) {
$options = array_merge($options, array('cache_wsdl'=>FALSE));
$options = array_merge($options, array('cache_wsdl' => WSDL_CACHE_NONE));
$client = new SoapClient($wsdlFile, $options);
$_methods = array_unique($client->__getFunctions());
unset($client);
Expand Down

0 comments on commit 1f13f3a

Please sign in to comment.