Skip to content

Commit dbd8ba6

Browse files
HypeMCfabpot
authored andcommitted
[HttpClient] Fix CurlHttpClient memory leak
1 parent 688f957 commit dbd8ba6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Test/Fixtures/web/index.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
exit;
158158

159159
case '/json':
160-
header("Content-Type: application/json");
160+
header('Content-Type: application/json');
161161
echo json_encode([
162162
'documents' => [
163163
['id' => '/json/1'],
@@ -170,7 +170,7 @@
170170
case '/json/1':
171171
case '/json/2':
172172
case '/json/3':
173-
header("Content-Type: application/json");
173+
header('Content-Type: application/json');
174174
echo json_encode([
175175
'title' => $vars['REQUEST_URI'],
176176
]);

0 commit comments

Comments
 (0)