Skip to content

Commit

Permalink
fixing a namespace issue
Browse files Browse the repository at this point in the history
  • Loading branch information
detain committed May 22, 2017
1 parent 653acd0 commit ec5631c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Fantastico.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ public function connect() {
ini_set('soap.wsdl_cache_enabled', '0');
ini_set('max_execution_time', 1000);
ini_set('default_socket_timeout', 1000);
$this->soapClient = new SoapClient($this->wsdl, array(
$this->soapClient = new \SoapClient($this->wsdl, array(

'soap_version' => SOAP_1_1,
'connection_timeout' => 1000,
'trace' => 1,
'exception' => 1));
//require_once (INCLUDE_ROOT . '/../vendor/detain/nusoap/lib/nusoap.php');
//$this->soapClient = new nusoap_client($this->wsdl);
//$this->soapClient = new \nusoap_client($this->wsdl);
}
}

Expand Down

0 comments on commit ec5631c

Please sign in to comment.