Deleted condition to disable caching the WSDL in WebServiceContext

This commit is contained in:
Francis Besset 2011-11-14 20:23:40 +01:00
parent ebb5343e11
commit 8f79b3392a
1 changed files with 1 additions and 3 deletions

View File

@ -109,9 +109,7 @@ class WebServiceContext
->withTypeConverters($this->converters)
;
if (!$this->options['debug']) {
$this->serverBuilder->withWsdlCacheNone();
} elseif (null !== $this->options['cache_type']) {
if (null !== $this->options['cache_type']) {
$this->serverBuilder->withWsdlCache($this->options['cache_type']);
}
}