[SoapBundle] Keep debug in WebServiceContext

Issue #6
The generated cache is incorrect (maybe because service are cached).
To fix the problem quickly, the debug mode is enabled.
This commit is contained in:
Francis Besset 2013-08-26 14:40:00 +02:00
parent 42d38653af
commit adb1d9bd89
1 changed files with 2 additions and 0 deletions

View File

@ -52,6 +52,8 @@ class WebServiceContext
$this->typeRepository = $typeRepository;
$this->converters = $converters;
// Issue #6: keep the debug because the cache is invalid
$options['debug'] = true;
$this->options = $options;
}