Added cache_type option for soap server definition

This commit is contained in:
Francis Besset
2011-09-04 12:59:19 +02:00
parent b1da32bc97
commit 4e33819eca
5 changed files with 48 additions and 5 deletions

View File

@ -103,7 +103,10 @@ class WebServiceContext
$this->getWsdlFile(),
$this->serviceDefinition->getDefinitionComplexTypes(),
$this->converterRepository,
$this->options['debug']
array(
'debug' => $this->options['debug'],
'cache_type' => isset($this->options['cache_type']) ? $this->options['cache_type'] : null,
)
);
}