for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace GusApi\Client;
class SoapClient extends \SoapClient
{
public function __doRequest(string $request, string $location, string $action, int $version, bool $oneWay = false): string
$response = parent::__doRequest($request, $location, $action, $version, $oneWay);
$oneWay
boolean
integer
SoapClient::__doRequest()
If this is a false-positive, you can also ignore this issue in your code via the ignore-type annotation
ignore-type
$response = parent::__doRequest($request, $location, $action, $version, /** @scrutinizer ignore-type */ $oneWay);
return MultipartResponseDecoder::decode((string) $response);
}