From 6672adf92b98ba2f6619ab337b406384afaef852 Mon Sep 17 00:00:00 2001 From: aspilicious Date: Fri, 30 Jul 2021 16:20:35 +0200 Subject: [PATCH] Added php8 support --- src/Thybag/Auth/SoapClientAuth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Thybag/Auth/SoapClientAuth.php b/src/Thybag/Auth/SoapClientAuth.php index 4f384f5..ba33e47 100644 --- a/src/Thybag/Auth/SoapClientAuth.php +++ b/src/Thybag/Auth/SoapClientAuth.php @@ -64,7 +64,7 @@ public function __construct($wsdl, $options = NULL) { \Thybag\Auth\StreamWrapperHttpAuth::$Password = $this->Password; } - parent::SoapClient($wsdl, ($options ? $options : array())); + parent::__construct($wsdl, ($options ? $options : array())); stream_wrapper_restore('http'); if (in_array("https", $wrappers)) stream_wrapper_restore('https');