Esempio n. 1
0
 /**
  * @param ClassMapInterface $classMap
  */
 public function addClassMap(ClassMapInterface $classMap)
 {
     $this->classMaps->add($classMap);
 }
 function let(ClassMapCollection $classMap, TypeConverterCollection $typeConverters)
 {
     $classMap->toSoapClassMap()->willReturn([]);
     $typeConverters->toSoapTypeMap()->willReturn([]);
     $this->beConstructedWith($classMap, $typeConverters);
 }
Esempio n. 3
0
 /**
  * @param string $wsdl
  * @param array $soapOptions
  *
  * @return SoapClient
  */
 public function factory($wsdl, array $soapOptions = [])
 {
     $defaults = ['trace' => true, 'exceptions' => true, 'keep_alive' => true, 'cache_wsdl' => WSDL_CACHE_BOTH, 'features' => SOAP_SINGLE_ELEMENT_ARRAYS, 'classmap' => $this->classMap->toSoapClassMap(), 'typemap' => $this->typeConverters->toSoapTypeMap()];
     $options = array_merge($defaults, $soapOptions);
     return new SoapClient($wsdl, $options);
 }