Ondrejnov\EET\SoapClient::__construct PHP Method

__construct() public method

public __construct ( string $service, string $key, string $cert, boolean $trace = FALSE )
$service string
$key string
$cert string
$trace boolean
    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;
    }