Skip to content

Commit

Permalink
Fixed CS
Browse files Browse the repository at this point in the history
  • Loading branch information
francisbesset committed Oct 17, 2013
1 parent d60eb19 commit 100dfe1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions AbstractSoapBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function withWsdl($wsdl)
*/
public function withSoapVersion11()
{
$this->soapOptions['soap_version'] = SOAP_1_1;
$this->soapOptions['soap_version'] = \SOAP_1_1;

return $this;
}
Expand All @@ -85,7 +85,7 @@ public function withSoapVersion11()
*/
public function withSoapVersion12()
{
$this->soapOptions['soap_version'] = SOAP_1_2;
$this->soapOptions['soap_version'] = \SOAP_1_2;

return $this;
}
Expand Down Expand Up @@ -156,7 +156,7 @@ public function withWsdlCacheDiskAndMemory()
*/
public function withSingleElementArrays()
{
$this->soapOptions['features'] |= SOAP_SINGLE_ELEMENT_ARRAYS;
$this->soapOptions['features'] |= \SOAP_SINGLE_ELEMENT_ARRAYS;

return $this;
}
Expand All @@ -168,7 +168,7 @@ public function withSingleElementArrays()
*/
public function withWaitOneWayCalls()
{
$this->soapOptions['features'] |= SOAP_WAIT_ONE_WAY_CALLS;
$this->soapOptions['features'] |= \SOAP_WAIT_ONE_WAY_CALLS;

return $this;
}
Expand All @@ -180,7 +180,7 @@ public function withWaitOneWayCalls()
*/
public function withUseXsiArrayType()
{
$this->soapOptions['features'] |= SOAP_USE_XSI_ARRAY_TYPE;
$this->soapOptions['features'] |= \SOAP_USE_XSI_ARRAY_TYPE;

return $this;
}
Expand Down Expand Up @@ -243,4 +243,4 @@ protected function validateWsdl()
throw new \InvalidArgumentException('The WSDL has to be configured!');
}
}
}
}

0 comments on commit 100dfe1

Please sign in to comment.