From 95efa3e366456f4aafcf0be541d6b453613b98b9 Mon Sep 17 00:00:00 2001 From: Francis Besset Date: Thu, 17 Oct 2013 13:48:02 +0200 Subject: [PATCH] Fixed CS --- src/BeSimple/SoapCommon/AbstractSoapBuilder.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/BeSimple/SoapCommon/AbstractSoapBuilder.php b/src/BeSimple/SoapCommon/AbstractSoapBuilder.php index 207893f..7c4dfdf 100644 --- a/src/BeSimple/SoapCommon/AbstractSoapBuilder.php +++ b/src/BeSimple/SoapCommon/AbstractSoapBuilder.php @@ -75,7 +75,7 @@ abstract class AbstractSoapBuilder */ public function withSoapVersion11() { - $this->soapOptions['soap_version'] = SOAP_1_1; + $this->soapOptions['soap_version'] = \SOAP_1_1; return $this; } @@ -85,7 +85,7 @@ abstract class AbstractSoapBuilder */ public function withSoapVersion12() { - $this->soapOptions['soap_version'] = SOAP_1_2; + $this->soapOptions['soap_version'] = \SOAP_1_2; return $this; } @@ -156,7 +156,7 @@ abstract class AbstractSoapBuilder */ public function withSingleElementArrays() { - $this->soapOptions['features'] |= SOAP_SINGLE_ELEMENT_ARRAYS; + $this->soapOptions['features'] |= \SOAP_SINGLE_ELEMENT_ARRAYS; return $this; } @@ -168,7 +168,7 @@ abstract class AbstractSoapBuilder */ public function withWaitOneWayCalls() { - $this->soapOptions['features'] |= SOAP_WAIT_ONE_WAY_CALLS; + $this->soapOptions['features'] |= \SOAP_WAIT_ONE_WAY_CALLS; return $this; } @@ -180,7 +180,7 @@ abstract class AbstractSoapBuilder */ public function withUseXsiArrayType() { - $this->soapOptions['features'] |= SOAP_USE_XSI_ARRAY_TYPE; + $this->soapOptions['features'] |= \SOAP_USE_XSI_ARRAY_TYPE; return $this; } @@ -243,4 +243,4 @@ abstract class AbstractSoapBuilder throw new \InvalidArgumentException('The WSDL has to be configured!'); } } -} \ No newline at end of file +}