diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 21ac6da3..932e8040 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '8.1', '8.2', '8.3', '8.4' ] + php: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] name: PHP ${{ matrix.php }} steps: - name: Checkout diff --git a/src/API/NTLMSoapClient.php b/src/API/NTLMSoapClient.php index a986aba5..a1af6cf2 100644 --- a/src/API/NTLMSoapClient.php +++ b/src/API/NTLMSoapClient.php @@ -187,10 +187,11 @@ public function __construct($location, $auth, $wsdl, $options = array()) * @param string $action the soap action. * @param integer $version the soap version * @param integer $one_way + * @param string $uriParserClass * @return string the xml soap response. */ #[\ReturnTypeWillChange] - public function __doRequest($request, $location, $action, $version, $one_way = 0) + public function __doRequest($request, $location, $action, $version, $one_way = 0, ?string $uriParserClass = null) { $postOptions = array( 'body' => $request,