Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/ParallelSoapClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,10 +265,11 @@ public function __construct($wsdl, array $options = null)
* @param string $action The SOAP action
* @param int $version The SOAP version
* @param bool $oneWay If one_way is set to 1, this method returns nothing. Use this where a response is not expected
* @param string|null $uriParserClass The URI parser class added by PHP 8.5; unused here, kept for signature compatibility
*
* @return string
*/
public function __doRequest(string $request, string $location, string $action, int $version, bool $oneWay = false): ?string
public function __doRequest(string $request, string $location, string $action, int $version, bool $oneWay = false, ?string $uriParserClass = null): ?string
{
$shouldGetResponse = ($this->soapMethod == static::GET_RESPONSE_CONST);

Expand Down