We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fead5a4 commit 4bb385dCopy full SHA for 4bb385d
tests/Unit/SoapClientTest.php
@@ -46,11 +46,11 @@ public function testWsseWithWsaCall()
46
$client = Soap::baseWsdl('https://laravel-soap.wsdl')->withWsse([
47
'userTokenName' => 'Test',
48
'userTokenPassword' => 'passwordTest',
49
- 'mustUnderstand' => false
+ 'mustUnderstand' => false,
50
])->withWsa();
51
$response = $client->Get_User();
52
$lastRequestInfo = $client->getEngine()->collectLastRequestInfo();
53
- self::assertStringNotContainsString( 'mustUnderstand', $lastRequestInfo->getLastRequest());
+ self::assertStringNotContainsString('mustUnderstand', $lastRequestInfo->getLastRequest());
54
// dd($client->debugLastSoapRequest());
55
self::assertTrue($response->ok());
56
}
0 commit comments