This commit is contained in:
Francis Besset 2013-10-17 13:48:02 +02:00
parent c830097430
commit 95efa3e366
1 changed files with 6 additions and 6 deletions

View File

@ -75,7 +75,7 @@ abstract class AbstractSoapBuilder
*/ */
public function withSoapVersion11() public function withSoapVersion11()
{ {
$this->soapOptions['soap_version'] = SOAP_1_1; $this->soapOptions['soap_version'] = \SOAP_1_1;
return $this; return $this;
} }
@ -85,7 +85,7 @@ abstract class AbstractSoapBuilder
*/ */
public function withSoapVersion12() public function withSoapVersion12()
{ {
$this->soapOptions['soap_version'] = SOAP_1_2; $this->soapOptions['soap_version'] = \SOAP_1_2;
return $this; return $this;
} }
@ -156,7 +156,7 @@ abstract class AbstractSoapBuilder
*/ */
public function withSingleElementArrays() public function withSingleElementArrays()
{ {
$this->soapOptions['features'] |= SOAP_SINGLE_ELEMENT_ARRAYS; $this->soapOptions['features'] |= \SOAP_SINGLE_ELEMENT_ARRAYS;
return $this; return $this;
} }
@ -168,7 +168,7 @@ abstract class AbstractSoapBuilder
*/ */
public function withWaitOneWayCalls() public function withWaitOneWayCalls()
{ {
$this->soapOptions['features'] |= SOAP_WAIT_ONE_WAY_CALLS; $this->soapOptions['features'] |= \SOAP_WAIT_ONE_WAY_CALLS;
return $this; return $this;
} }
@ -180,7 +180,7 @@ abstract class AbstractSoapBuilder
*/ */
public function withUseXsiArrayType() public function withUseXsiArrayType()
{ {
$this->soapOptions['features'] |= SOAP_USE_XSI_ARRAY_TYPE; $this->soapOptions['features'] |= \SOAP_USE_XSI_ARRAY_TYPE;
return $this; return $this;
} }
@ -243,4 +243,4 @@ abstract class AbstractSoapBuilder
throw new \InvalidArgumentException('The WSDL has to be configured!'); throw new \InvalidArgumentException('The WSDL has to be configured!');
} }
} }
} }