Skip to content

Commit 733ec24

Browse files
Remove trailing semicolon in Content-Type header
1 parent 045d02c commit 733ec24

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VCR/LibraryHooks/SoapHook.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function doRequest(string $request, string $location, string $action, int
4444
$vcrRequest = new Request('POST', $location);
4545

4646
if (\SOAP_1_1 === $version) {
47-
$vcrRequest->setHeader('Content-Type', 'text/xml; charset=utf-8;');
47+
$vcrRequest->setHeader('Content-Type', 'text/xml; charset=utf-8');
4848
$vcrRequest->setHeader('SOAPAction', $action);
4949
} else { // >= SOAP_1_2
5050
$vcrRequest->setHeader(

0 commit comments

Comments
 (0)