From 8f79b3392a70c560d066216e02a9f8e53b8967a0 Mon Sep 17 00:00:00 2001 From: Francis Besset Date: Mon, 14 Nov 2011 20:23:40 +0100 Subject: [PATCH] Deleted condition to disable caching the WSDL in WebServiceContext --- WebServiceContext.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/WebServiceContext.php b/WebServiceContext.php index eaeb588..49d447a 100644 --- a/WebServiceContext.php +++ b/WebServiceContext.php @@ -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']); } }