__doRequest() public method

See also: SoapClient::__doRequest
public __doRequest ( $request, $location, $action, $version, $one_way )
Ejemplo n.º 1
0
 public function __doRequest($request, $location = NULL, $action = NULL, $version = NULL, $one_way = 0)
 {
     if (!$location) {
         $location = $this->location;
     }
     if (!$version) {
         $version = $this->_soap_version;
     }
     return parent::__doRequest($request, $location, $action, $version, $one_way);
 }