Skip to content

Commit 4bb385d

Browse files
authored
Apply fixes from StyleCI (#139)
Co-authored-by: Gregor Becker <[email protected]>
1 parent fead5a4 commit 4bb385d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Unit/SoapClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ public function testWsseWithWsaCall()
4646
$client = Soap::baseWsdl('https://laravel-soap.wsdl')->withWsse([
4747
'userTokenName' => 'Test',
4848
'userTokenPassword' => 'passwordTest',
49-
'mustUnderstand' => false
49+
'mustUnderstand' => false,
5050
])->withWsa();
5151
$response = $client->Get_User();
5252
$lastRequestInfo = $client->getEngine()->collectLastRequestInfo();
53-
self::assertStringNotContainsString( 'mustUnderstand', $lastRequestInfo->getLastRequest());
53+
self::assertStringNotContainsString('mustUnderstand', $lastRequestInfo->getLastRequest());
5454
// dd($client->debugLastSoapRequest());
5555
self::assertTrue($response->ok());
5656
}

0 commit comments

Comments
 (0)