Inheritance: extends SoapClient
コード例 #1
0
ファイル: SoapClient.php プロジェクト: ondrejnov/eet
 /**
  * 
  * @param string $service
  * @param string $key
  * @param string $cert
  * @param boolean $trace
  */
 public function __construct($service, $key, $cert, $trace = FALSE)
 {
     $this->connectionStartTime = microtime(TRUE);
     parent::__construct($service, ['exceptions' => TRUE, 'trace' => $trace]);
     $this->key = $key;
     $this->cert = $cert;
     $this->traceRequired = $trace;
 }